<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use Symfony\Component\Console\Command\Command as CommandAlias;
class Test extends Command
{
protected $signature = 'test';
protected $description = 'Test command';
public function handle(): int
{
$this->info($this->description);
return CommandAlias::SUCCESS;
}
}