#!/usr/bin/env php<?phpuseSymfony\Bundle\FrameworkBundle\Console\Application;useSymfony\Component\Console\Input\ArgvInput;useSymfony\Component\Debug\Debug;// if you don't want to setup permissions the proper way, just uncomment the following PHP line// read https://symfony.com/doc/current/setup.html#checking-symfony-application-configuration-and-setup// for more information//umask(0000);set_time_limit(0);require__DIR__.'/../vendor/autoload.php';$input=newArgvInput();$env=$input->getParameterOption(['--env','-e'],getenv('SYMFONY_ENV')?:'dev');$debug=getenv('SYMFONY_DEBUG')!=='0'&&!$input->hasParameterOption(['--no-debug',''])&&$env!=='prod';if($debug){Debug::enable();}$kernel=newAppKernel($env,$debug);$application=newApplication($kernel);$application->run($input);