]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/BaseConfig.php
Merge pull request #9039 from MrPetovan/task/frio-accent-scheme
[friendica.git] / src / Core / BaseConfig.php
index b464beed1bbff0aba2abf8acc40ab311169e3fd5..2c64f525ab2ccc1e8f0a387c9ac703a88717ea71 100644 (file)
@@ -1,4 +1,23 @@
 <?php
+/**
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ */
 
 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;