for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Spiral Framework, SpiralScout LLC.
*
* @author Vladislav Gorenkin (vladgorenkin)
*/
declare(strict_types=1);
namespace Spiral\Tests\Console\Fixtures;
use Exception;
use Spiral\Console\Command;
class LazyLoadedCommand extends Command
{
public const NAME = 'lazy';
public const DESCRIPTION = 'Lazy description';
public function perform(): int
$this->write('OK');
return self::SUCCESS;
}