for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Cortex\Auth\Console\Commands;
use Illuminate\Console\Command;
class MigrateCommand extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'cortex:migrate:auth {--force : Force the operation to run when in production.}';
* The console command description.
protected $description = 'Migrate Cortex Auth Tables.';
* Execute the console command.
* @return void
public function handle(): void
$this->warn($this->description);
$this->call('migrate', ['--step' => true, '--path' => 'app/cortex/auth/database/migrations', '--force' => $this->option('force')]);
Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.
}
Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.