diff -r 000000000000 -r 7f95f8617b0b app/console --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/app/console Sat Sep 24 15:40:41 2011 +0200 @@ -0,0 +1,16 @@ +#!/usr/bin/env php +getParameterOption(array('--env', '-e'), getenv('SYMFONY_ENV') ?: 'dev'); +$debug = !$input->hasParameterOption(array('--no-debug', '')); + +$kernel = new AppKernel($env, $debug); +$application = new Application($kernel); +$application->run();