for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Project\Console;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class ProjectTestCommand extends Command
{
protected function configure()
$this
// the name of the command (the part after "bin/console")
->setName('hello:project')
// the short description shown while running "php bin/console list"
->setDescription('Echo hello project')
// the full command description shown when running the command with
// the "--help" option
->setHelp('This command allows you to write hello project to screen')
;
}
public function execute(InputInterface $input, OutputInterface $output)
$output->writeln('Hello Project');