Unable to figure out properly what this TODO is trying to convey File: `src/lib/generators/MigrationsGenerator.php::generate()`  Does it try to convey that do while loop should be replaced by for loop as: ``` for ($i = 0; $i < PHP_INT_MAX; $i++) { $date = YII_ENV_TEST ? '200000_00' : ''; $className = $migration->makeClassNameByTime($i, $migrationNamespace, $date); if (!file_exists(Yii::getAlias("$migrationPath/$className.php"))) { break; } } ``` @cebe any thoughts? --- Part of https://github.com/php-openapi/yii2-openapi/issues/10 and Part of https://github.com/cebe/yii2-openapi/issues/180