Newer
Older
<?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");
}
}