Update 2024-12-16 18:30:08

This commit is contained in:
Robot 2024-12-16 18:30:12 +02:00
parent 719b2c54a1
commit 088ef5588e
Signed by: Robot
GPG Key ID: 14DECD44E7E1BB95
3 changed files with 5 additions and 12 deletions

View File

@ -8,7 +8,7 @@
``` ```
# class Config (Details) # class Config (Details)
> namespace: **VDM\Joomla\Componentbuilder\Search** > namespace: **VDM\Joomla\Componentbuilder\Search**
> extends: **BaseConfig** > extends: **FunctionRegistry**
```uml ```uml
@startuml @startuml

View File

@ -14,7 +14,7 @@ namespace VDM\Joomla\Componentbuilder\Search;
use Joomla\CMS\Factory; use Joomla\CMS\Factory;
use Joomla\Input\Input; use Joomla\Input\Input;
use VDM\Joomla\Abstraction\BaseConfig; use VDM\Joomla\Abstraction\FunctionRegistry;
/** /**
@ -22,7 +22,7 @@ use VDM\Joomla\Abstraction\BaseConfig;
* *
* @since 3.2.0 * @since 3.2.0
*/ */
class Config extends BaseConfig class Config extends FunctionRegistry
{ {
/** /**
* Hold a JInput object for easier access to the input variables. * Hold a JInput object for easier access to the input variables.
@ -43,9 +43,6 @@ class Config extends BaseConfig
public function __construct(?Input $input = null) public function __construct(?Input $input = null)
{ {
$this->input = $input ?: Factory::getApplication()->input; $this->input = $input ?: Factory::getApplication()->input;
// run parent constructor
parent::__construct();
} }
/** /**
@ -200,7 +197,6 @@ class Config extends BaseConfig
protected function getMarkerend(): string protected function getMarkerend(): string
{ {
return ']=' . '|' . '+}'; return ']=' . '|' . '+}';
} }
} }

View File

@ -17,9 +17,6 @@
public function __construct(?Input $input = null) public function __construct(?Input $input = null)
{ {
$this->input = $input ?: Factory::getApplication()->input; $this->input = $input ?: Factory::getApplication()->input;
// run parent constructor
parent::__construct();
} }
/** /**
@ -174,4 +171,4 @@
protected function getMarkerend(): string protected function getMarkerend(): string
{ {
return ']=' . '|' . '+}'; return ']=' . '|' . '+}';
} }