]> git.mxchange.org Git - friendica.git/blobdiff - src/Console/Maintenance.php
Merge pull request #11250 from nupplaphil/bug/redis_pw
[friendica.git] / src / Console / Maintenance.php
index 647d1910f468999e8c936f2969e624553afab1e8..7e731828466d8d2f5b176bb9f149948c389007b3 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;
 
 /**
  * Sets maintenance mode for this node
@@ -36,7 +36,7 @@ class Maintenance extends \Asika\SimpleConsole\Console
         */
        private $appMode;
        /**
-        * @var IConfig
+        * @var IManageConfigValues
         */
        private $config;
 
@@ -69,7 +69,7 @@ HELP;
                return $help;
        }
 
-       public function __construct(App\Mode $appMode, IConfig $config, $argv = null)
+       public function __construct(App\Mode $appMode, IManageConfigValues $config, $argv = null)
        {
                parent::__construct($argv);