X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FConsole%2FTypo.php;h=a3e9b770505b6873540c0d9ba10aae6bdcacd227;hb=d4a5a8051ad34a7be72238967afb3e6b140afdc8;hp=216d05723285bce1e818da6b9fbd4ef3186edba1;hpb=da56e0a54105760be744ab68545c282f7cc140c9;p=friendica.git diff --git a/src/Console/Typo.php b/src/Console/Typo.php index 216d057232..a3e9b77050 100644 --- a/src/Console/Typo.php +++ b/src/Console/Typo.php @@ -1,19 +1,41 @@ . + * + */ namespace Friendica\Console; -use Friendica\BaseObject; +use Friendica\Core\Config\Capability\IManageConfigValues; /** * Tired of chasing typos and finding them after a commit. * Run this and quickly see if we've got any parse errors in our application files. - * - * @author Hypolite Petovan */ class Typo extends \Asika\SimpleConsole\Console { protected $helpOptions = ['h', 'help', '?']; + /** + * @var IManageConfigValues + */ + private $config; + protected function getHelp() { $help = <<config = $config; + } + + protected function doExecute(): int { if ($this->getOption('v')) { $this->out('Class: ' . __CLASS__); @@ -43,7 +72,7 @@ HELP; throw new \Asika\SimpleConsole\CommandArgsException('Too many arguments'); } - $php_path = BaseObject::getApp()->getConfig()->get('config', 'php_path', 'php'); + $php_path = $this->config->get('config', 'php_path', 'php'); if ($this->getOption('v')) { $this->out('Directory: src'); @@ -76,13 +105,6 @@ HELP; $files = glob('mod/*.php'); $this->checkFiles($php_path, $files); - if ($this->getOption('v')) { - $this->out('Directory: include'); - } - - $files = glob('include/*.php'); - $this->checkFiles($php_path, $files); - if ($this->getOption('v')) { $this->out('Directory: addon'); }