Update 2024-12-16 18:30:08
This commit is contained in:
parent
719b2c54a1
commit
088ef5588e
@ -8,7 +8,7 @@
|
||||
```
|
||||
# class Config (Details)
|
||||
> namespace: **VDM\Joomla\Componentbuilder\Search**
|
||||
> extends: **BaseConfig**
|
||||
> extends: **FunctionRegistry**
|
||||
|
||||
```uml
|
||||
@startuml
|
||||
|
@ -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 ']=' . '|' . '+}';
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
@ -17,9 +17,6 @@
|
||||
public function __construct(?Input $input = null)
|
||||
{
|
||||
$this->input = $input ?: Factory::getApplication()->input;
|
||||
|
||||
// run parent constructor
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user