]> git.mxchange.org Git - friendica.git/blobdiff - src/Console/Config.php
Add new contact/{id}/contacts[/{type}] route and module
[friendica.git] / src / Console / Config.php
index 797f6394917586fe7d1d58f94f38a7446f02e0cc..831ea9e9c5156822bf8ef7dbb57a0efc89fc4f8d 100644 (file)
@@ -1,14 +1,33 @@
 <?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\Console;
 
 use Asika\SimpleConsole\CommandArgsException;
 use Friendica\App;
-use Friendica\Core\Config\Configuration;
+use Friendica\Core\Config\IConfig;
 use RuntimeException;
 
 /**
- * @brief tool to access the system config from the CLI
+ * tool to access the system config from the CLI
  *
  * With this script you can access the system configuration of your node from
  * the CLI. You can do both, reading current values stored in the database and
@@ -27,9 +46,6 @@ use RuntimeException;
  *   If you specify three parameters, the named configuration setting will be
  *   set to the value of the last parameter. (e.g. "system loglevel 0" will
  *   disable logging)
- *
- * @author Tobias Diekershoff <tobias.diekershoff@gmx.net>
- * @author Hypolite Petovan <hypolite@mrpetovan.com>
  */
 class Config extends \Asika\SimpleConsole\Console
 {
@@ -40,7 +56,7 @@ class Config extends \Asika\SimpleConsole\Console
         */
        private $appMode;
        /**
-        * @var Configuration
+        * @var IConfig
         */
        private $config;
 
@@ -78,7 +94,7 @@ HELP;
                return $help;
        }
 
-       public function __construct(App\Mode $appMode, Configuration $config, array $argv = null)
+       public function __construct(App\Mode $appMode, IConfig $config, array $argv = null)
        {
                parent::__construct($argv);