for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Alive2212\LaravelMessageService\Console;
use Illuminate\Console\Command;
class InstallCommand extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'message:install {--force : Overwrite keys they already exist}';
* The console command description.
protected $description = 'Run the commands necessary to prepare Message for use';
* Execute the console command.
* @return mixed
public function handle()
$this->call('message:keys', ['--force' => $this->option('force')]);
}