for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace AardsGerds\Game\Infrastructure\Cli;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
final class RunGameCommand extends Command
{
protected static $defaultName = 'game:run';
protected function configure(): void
}
protected function execute(InputInterface $input, OutputInterface $output): int
return Command::SUCCESS;