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)
> namespace: **VDM\Joomla\Componentbuilder\Search**
> extends: **BaseConfig**
> extends: **FunctionRegistry**
```uml
@startuml

View File

@ -14,7 +14,7 @@ namespace VDM\Joomla\Componentbuilder\Search;
use Joomla\CMS\Factory;
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
*/
class Config extends BaseConfig
class Config extends FunctionRegistry
{
/**
* 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)
{
$this->input = $input ?: Factory::getApplication()->input;
// run parent constructor
parent::__construct();
}
/**
@ -201,6 +198,5 @@ class Config extends BaseConfig
{
return ']=' . '|' . '+}';
}
}

View File

@ -17,9 +17,6 @@
public function __construct(?Input $input = null)
{
$this->input = $input ?: Factory::getApplication()->input;
// run parent constructor
parent::__construct();
}
/**