X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FConsole%2FConfig.php;h=831ea9e9c5156822bf8ef7dbb57a0efc89fc4f8d;hb=18cd4f7412b5b48108cc1a0d2f5d9d745f8bdbe9;hp=62a535add421a4392ce7d5e8545d4517de3437e3;hpb=af88c2daa34e39cb6430abf64d0648665bfeb9cd;p=friendica.git diff --git a/src/Console/Config.php b/src/Console/Config.php index 62a535add4..831ea9e9c5 100644 --- a/src/Console/Config.php +++ b/src/Console/Config.php @@ -1,10 +1,29 @@ . + * + */ namespace Friendica\Console; use Asika\SimpleConsole\CommandArgsException; use Friendica\App; -use Friendica\Core\Config\IConfiguration; +use Friendica\Core\Config\IConfig; use RuntimeException; /** @@ -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 - * @author Hypolite Petovan */ class Config extends \Asika\SimpleConsole\Console { @@ -40,7 +56,7 @@ class Config extends \Asika\SimpleConsole\Console */ private $appMode; /** - * @var IConfiguration + * @var IConfig */ private $config; @@ -78,7 +94,7 @@ HELP; return $help; } - public function __construct(App\Mode $appMode, IConfiguration $config, array $argv = null) + public function __construct(App\Mode $appMode, IConfig $config, array $argv = null) { parent::__construct($argv);