-
-
Notifications
You must be signed in to change notification settings - Fork 838
Open
Description
In the file vendor/infyomlabs/laravel-generator/src/Commands/BaseCommand.php
This line needs to be corrected.
if (isset($jsonData['migrate']) && $jsonData['migrate'] == false) {
$this->config->options['skip'][] = 'migration';
}
Maybe this
$currentSkip = $this->option('skip') ?? '';
$skips = empty($currentSkip) ? [] : explode(',', $currentSkip);
$skips[] = 'migration';
$this->input->setOption('skip', implode(',', array_unique($skips)));
Metadata
Metadata
Assignees
Labels
No labels