Test1Command.php 326 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
<?php


namespace Spg\Test1\Console;

use Illuminate\Console\Command;

class Test1Command extends Command
{
    protected $signature = 'test1';
    protected $description = 'Prints "Hello World" from the test-1 package';

    public function handle()
    {
        $this->info('Hello World from the test-1 package!');
    }
}