for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace App\Command;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Yiisoft\Yii\Console\ExitCode;
final class Hello extends Command
{
protected static $defaultName = 'hello';
protected static $defaultDescription = 'An example command';
public function __construct()
parent::__construct();
}
protected function execute(InputInterface $input, OutputInterface $output): int
$output->writeln('Hello!');
return ExitCode::OK;