]> git.mxchange.org Git - friendica.git/blobdiff - src/Console/PostUpdate.php
Merge pull request #11524 from annando/cache-endpoints
[friendica.git] / src / Console / PostUpdate.php
index 35b57fb7aab9c23f4773a2aa4c3f7cc9e27c159c..376d3abb4b0354f6a4463b1785e9fa054626a7f7 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -22,7 +22,7 @@
 namespace Friendica\Console;
 
 use Friendica\App;
-use Friendica\Core\Config\IConfig;
+use Friendica\Core\Config\Capability\IManageConfigValues;
 use Friendica\Core\L10n;
 use Friendica\Core\Update;
 
@@ -38,7 +38,7 @@ class PostUpdate extends \Asika\SimpleConsole\Console
         */
        private $appMode;
        /**
-        * @var IConfig
+        * @var IManageConfigValues
         */
        private $config;
        /**
@@ -60,7 +60,7 @@ HELP;
                return $help;
        }
 
-       public function __construct(App\Mode $appMode, IConfig $config, L10n $l10n, array $argv = null)
+       public function __construct(App\Mode $appMode, IManageConfigValues $config, L10n $l10n, array $argv = null)
        {
                parent::__construct($argv);