for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Piface\Router\Command;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class RouteListCommand extends Command
{
protected static $defaultName = 'route:list';
protected function configure()
$this->setDescription('List of routes.');
}
protected function execute(InputInterface $input, OutputInterface $output)
$output->writeln(["Route list :"]);