diff --git a/bin/doctrine.php b/bin/doctrine.php deleted file mode 100644 index 91986c6286..0000000000 --- a/bin/doctrine.php +++ /dev/null @@ -1,76 +0,0 @@ - 'pdo_mysql', - 'host' => $_configuration['db_host'], - 'user' => $_configuration['db_user'], - 'password' => $_configuration['db_password'], - 'dbname' => $_configuration['main_database'] -]; - -$database->connect($dbParams, realpath(__DIR__).'/', realpath(__DIR__).'/'); -$entityManager = $database::getManager(); - -$helperSet = ConsoleRunner::createHelperSet($entityManager); -$dialogHelper = new Symfony\Component\Console\Helper\QuestionHelper(); -$helperSet->set($dialogHelper); - -return $helperSet;