It seems removeing the $_ENV was premature, as some other enviroment variables are needed sometimes.
Eg. symfony2.8, I can't connect to database - same command: app/console doctrine:database:drop
executed directly - works
executed via fastest - does not work
executed via fastest with $_ENV and variables_order=EGCPS (in php.ini) - works again
It seems removeing the
$_ENV
was premature, as some other enviroment variables are needed sometimes. Eg. symfony2.8, I can't connect to database - same command:app/console doctrine:database:drop
$_ENV
andvariables_order=EGCPS
(inphp.ini
) - works again