Test2Command.php 279 Bytes
Newer Older
Ali Kazemi's avatar
init  
Ali Kazemi committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?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");
    }
}