Files
BarangaySystem/app/Console/Commands/DemoCommand.php
2026-06-06 18:43:00 +08:00

20 lines
364 B
PHP

<?php
declare(strict_types=1);
namespace App\Console\Commands;
use Hypervel\Console\Command;
class DemoCommand extends Command
{
protected ?string $signature = 'demo:hi {--name=}';
protected string $description = 'Hyperf Demo Command';
public function handle()
{
$this->info('Hello ' . ($this->option('name') ?: 'Hypervel'));
}
}