123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
-
-
- require_once 'Doctrine/Common/ClassLoader.php';
-
- $classLoader = new \Doctrine\Common\ClassLoader('Doctrine');
- $classLoader->register();
-
- $classLoader = new \Doctrine\Common\ClassLoader('Symfony', 'Doctrine');
- $classLoader->register();
-
- $configFile = getcwd() . DIRECTORY_SEPARATOR . 'cli-config.php';
-
- $helperSet = null;
- if (file_exists($configFile)) {
- if ( ! is_readable($configFile)) {
- trigger_error(
- 'Configuration file [' . $configFile . '] does not have read permission.', E_ERROR
- );
- }
-
- require $configFile;
-
- foreach ($GLOBALS as $helperSetCandidate) {
- if ($helperSetCandidate instanceof \Symfony\Component\Console\Helper\HelperSet) {
- $helperSet = $helperSetCandidate;
- break;
- }
- }
- }
-
- $helperSet = ($helperSet) ?: new \Symfony\Component\Console\Helper\HelperSet();
-
- \Doctrine\ORM\Tools\Console\ConsoleRunner::run($helperSet);
|