Warning: session_start(): Session cannot be started after headers have already been sent in /home/tvrreohg/public_html/manga.php on line 13
setName('config-list') ->setDescription('Show runtime-configurable PsySH settings and their current values.'); } public function asText(): string { return \implode("\n", [ 'Usage:', ' config list', '', 'Help:', ' Show runtime-configurable PsySH settings and their current values.', ]); } protected function execute(InputInterface $input, OutputInterface $output): int { $table = $this->getTable($output); foreach ($this->getOptions() as $option) { $table->addRow([ $this->formatOptionName($option['name']), $this->formatValue($option['getter']()), ]); } $table->render(); return 0; } }