<?phpuseSymfony\Component\HttpFoundation\Request;require__DIR__.'/../vendor/autoload.php';if(PHP_VERSION_ID<70000){include_once__DIR__.'/../var/bootstrap.php.cache';}$kernel=newAppKernel('prod',false);if(PHP_VERSION_ID<70000){$kernel->loadClassCache();}//$kernel = new AppCache($kernel);// When using the HttpCache, you need to call the method in your front controller instead of relying on the configuration parameter//Request::enableHttpMethodParameterOverride();$request=Request::createFromGlobals();$response=$kernel->handle($request);$response->send();$kernel->terminate($request,$response);