X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FCore%2FBaseConfig.php;h=2c64f525ab2ccc1e8f0a387c9ac703a88717ea71;hb=0d1fa70e2ecb372d158871285e0cda5f6d77194a;hp=b464beed1bbff0aba2abf8acc40ab311169e3fd5;hpb=cb80108957f16011b5b7b1b8961da8cbd78d60c9;p=friendica.git diff --git a/src/Core/BaseConfig.php b/src/Core/BaseConfig.php index b464beed1b..2c64f525ab 100644 --- a/src/Core/BaseConfig.php +++ b/src/Core/BaseConfig.php @@ -1,4 +1,23 @@ . + * + */ namespace Friendica\Core; @@ -15,7 +34,7 @@ use Friendica\Model; abstract class BaseConfig implements IConfig { /** - * @var Cache\ConfigCache + * @var Cache */ protected $configCache; @@ -25,10 +44,10 @@ abstract class BaseConfig implements IConfig protected $configModel; /** - * @param Cache\ConfigCache $configCache The configuration cache (based on the config-files) - * @param Model\Config\Config $configModel The configuration model + * @param Cache $configCache The configuration cache (based on the config-files) + * @param Model\Config\Config $configModel The configuration model */ - public function __construct(Cache\ConfigCache $configCache, Model\Config\Config $configModel) + public function __construct(Cache $configCache, Model\Config\Config $configModel) { $this->configCache = $configCache; $this->configModel = $configModel;