app = $app; } /** * {@inheritdoc} */ public function isMigrable() { $oldFilesExist = is_file(__DIR__ . "/../../../../../../config/connexion.inc") && is_file(__DIR__ . "/../../../../../../config/_GV.php"); if ($oldFilesExist) { if (!is_file(__DIR__ . "/../../../../../../config/config.yml")) { return true; } // previous upgrade did not rename this file rename(__DIR__ . "/../../../../../../config/_GV.php", __DIR__ . "/../../../../../../config/_GV.php.old"); return false; } return false; } /** * {@inheritdoc} */ public function getMigration() { return new Migration31($this->app); } }