Skip to content
Test2Command.php 279 B
Newer Older
Ali Kazemi's avatar
Ali Kazemi committed
<?php


namespace Spg\Test2\Console;
use Illuminate\Console\Command;

class Test2Command extends Command
{
    protected $signature = 'test2';


    protected $description = 'test2 description';

    public function handle()
    {
        $this->info("make test2 work");
    }
}