for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Victormln\LaravelTactician\Commands;
use Illuminate\Console\Command;
/**
* Generate Tactician Command and Handler
* @package Victormln\LaravelTactician\Commands
*/
class MakeTacticianCommand extends Command
{
* The name and signature of the console command.
*
* @var string
protected $signature = 'make:tactician {name}';
* The console command description.
protected $description = 'Generate Tactician Command and Handler';
* Execute the console command.
* @return mixed
public function handle()
$this->call('make:tactician:command', $this->getNameArgument());
$this->call('make:tactician:handler', $this->getNameArgument());
}
* @return array
public function getNameArgument()
return ['name' => $this->argument('name')];