for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace LuisMulinari\Consoleful\fixtures;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
/**
* Class CommandTest
*
* @author Luis Henrique Mulinari <[email protected]>
*/
class CommandTest extends Command
{
protected function configure()
$this->setName('command:test')->setDescription('description');
}
protected function execute(InputInterface $input, OutputInterface $output)
$output->writeln('command');