for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Spiral Framework.
*
* @license MIT
* @author Anton Titov (Wolfy-J)
*/
declare(strict_types=1);
namespace Spiral\App\Command;
use Spiral\Console\Command;
class DeadCommand extends Command
{
public const NAME = 'dead';
public function perform(): void
echo $undefined;
}