Skip to content
Test1Command.php 326 B
Newer Older
Ali Kazemi's avatar
Ali Kazemi committed
<?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!');
    }
}