for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Cortex\Console\Console\Commands;
use Illuminate\Console\Command;
class InstallCommand extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'cortex:install:console {--force : Force the operation to run when in production.}';
* The console command description.
protected $description = 'Install Cortex Console Module.';
* Execute the console command.
* @return void
public function handle(): void
$this->alert($this->description);
$this->call('cortex:publish:console', ['--force' => $this->option('force')]);
$this->call('cortex:seed:console');
}