hotfix: Added aliases, implemented new runners

This commit is contained in:
2016-12-11 22:36:27 +01:00
parent 8e8cb05674
commit 302e5a50ce
23 changed files with 597 additions and 225 deletions

View File

@ -26,8 +26,10 @@ class FactsCommand extends Command
protected function execute(InputInterface $input, OutputInterface $output)
{
$facts = Facts::getSystemFacts()->getFlat();
print_r($facts);
foreach ($facts as $fact=>$value) {
$output->writeln(" <comment>{$fact}</>: <info>{$value}</>");
}
}
}