Slide 19
Slide 19 text
joind.in / 7059
phpDocumentor
Minimal CLI Application
command(new \Cilex\Command\GreetCommand());
$app->run();
setName('demo:greet')
->setDescription('Greet someone')
->addArgument('name', InputArgument::OPTIONAL, 'Who do you want to greet?')
}
protected function execute(InputInterface $input, OutputInterface $output)
{
$name = $input->getArgument('name');
$output->writeln('Hello'.($name ? ' '.$name : ''));
}
}