mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-03-18 21:04:52 +08:00
18 lines
349 B
PHP
18 lines
349 B
PHP
|
|
<?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;
|
||
|
|
}
|
||
|
|
}
|