1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
-
-
- (@include_once __DIR__ . '/../vendor/autoload.php') || @include_once __DIR__ . '/../../../autoload.php';
- $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);
|