Configuration
use Illuminate\Console\Command;
final class TestCommand extends Command
{
protected $signature = 'app:test {name}';
protected $description = 'Command description';
public function handle()
{
// Command code here
}
}use Illuminate\Console\Command;
use WendellAdriel\Virtue\Commands\Concerns\Virtue;
final class TestCommand extends Command
{
use Virtue;
protected $name = 'app:test';
protected $description = 'Command description';
public function handle()
{
// Command code here
}
}Last updated