static-php-cli/src/SPC/command/DoctorCommand.php

18 lines
349 B
PHP
Raw Normal View History

2023-04-22 17:45:43 +08:00
<?php
declare(strict_types=1);
namespace SPC\command;
use Symfony\Component\Console\Attribute\AsCommand;
#[AsCommand('doctor', 'Diagnose whether the current environment can compile normally')]
class DoctorCommand extends BaseCommand
{
public function handle(): int
{
logger()->error('Not implemented');
return 1;
}
}