for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Cortex\Statistics\Console\Commands;
use Rinvex\Statistics\Console\Commands\MigrateCommand as BaseMigrateCommand;
class MigrateCommand extends BaseMigrateCommand
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'cortex:migrate:statistics';
* The console command description.
protected $description = 'Migrate Cortex Statistics Tables.';
* Execute the console command.
* @return void
public function handle(): void
parent::handle();
$this->call('migrate', ['--step' => true, '--path' => 'app/cortex/statistics/database/migrations']);
}