У меня есть пользовательская команда миграции ниже
use Illuminate\Database\Console\Migrations\MigrateCommand as BaseMigrateCommand;
class MigrateAllCustomersCommand extends BaseMigrateCommand
{
private $count = 0;
public function __construct(Migrator $migrator)
{
parent::__construct($migrator);
}
public function handle()
{
$this->count += 1;
printf("%d,",$this->count);
$this->call('migrate');
}
}
php artisan migrate
работает бесконечно, как показано в следующем выводе: 1,2,3,...,10000...
Как я могу решить эту проблему?