]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/BaseConfig.php
Remove duplicate profile_uid key in App->profile array
[friendica.git] / src / Core / BaseConfig.php
index b464beed1bbff0aba2abf8acc40ab311169e3fd5..744e5cc49872d88c3f5bee8e95a52948a4181a40 100644 (file)
@@ -15,7 +15,7 @@ use Friendica\Model;
 abstract class BaseConfig implements IConfig
 {
        /**
-        * @var Cache\ConfigCache
+        * @var Cache
         */
        protected $configCache;
 
@@ -25,10 +25,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;