123456789101112131415161718192021222324252627282930 |
- <?php
- use Composer\Autoload\ClassLoader;
- use Symfony\Bundle\FrameworkBundle\Console\Application;
- use Symfony\Component\Console\Input\ArgvInput;
- use Symfony\Component\Debug\Debug;
- set_time_limit(0);
- $loader = require __DIR__.'/autoload.php';
- $input = new ArgvInput();
- $env = $input->getParameterOption(array('--env', '-e'), getenv('SYMFONY_ENV') ?: 'dev');
- $debug = getenv('SYMFONY_DEBUG') !== '0' && !$input->hasParameterOption(array('--no-debug', '')) && $env !== 'prod';
- if ($debug) {
- Debug::enable();
- }
- $kernel = new AppKernel($env, $debug);
- $application = new Application($kernel);
- $application->run($input);
|