app = $app; } /** * {@inheritdoc} */ public function isMigrable() { return is_file($this->app['root.path'] . "/config/config.yml") && is_file($this->app['root.path'] . "/config/services.yml") && is_file($this->app['root.path'] . "/config/connexions.yml"); } /** * {@inheritdoc} */ public function getMigration() { return new Migration38($this->app); } }