$lastId = 0;
$progressBar->
start();
do { $selectStatement->
execute([':lastId' =>
$lastId, ':maxId' =>
$maxId]);
$rows =
$selectStatement->
fetchAll(PDO::FETCH_ASSOC
);
if (empty($rows)) { continue;
} $this->
migrateTranslations($rows);
$progressBar->
advance(\
count($rows));
$lastId =
array_pop($rows)['id'
];
} while (!
empty($rows));
$progressBar->
finish();
} /**
* @return string[]
*/