setName("facts"); $this->setDescription("List the facts as collected on this system"); } protected function execute(InputInterface $input, OutputInterface $output) { $facts = Facts::getSystemFacts()->getFlat(); foreach ($facts as $fact=>$value) { $output->writeln(" {$fact}: {$value}"); } } }