for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace GacelaTest\Feature\Framework\FacadeAware\Module\UserInput\Command;
use Gacela\Framework\FacadeResolverAwareTrait;
use GacelaTest\Feature\Framework\FacadeAware\Module\Facade;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
/**
* @method Facade getFacade()
*/
final class TestHiCommand extends Command
{
use FacadeResolverAwareTrait;
public function run(InputInterface $input, OutputInterface $output): int
$output->write($this->getFacade()->sayHi());
return self::SUCCESS;
}
protected function facadeClass(): string
return Facade::class;