<?php 
 
use Symfony\Component\HttpFoundation\Request; 
 
$loader = require_once __DIR__.'/../app/bootstrap.php.cache'; 
 
require_once __DIR__.'/../app/AppKernel.php'; 
 
$kernel = new AppKernel('prod', false); 
$kernel->loadClassCache(); 
 
// When using the HttpCache, you need to call the method in your front controller instead of relying on the configuration parameter 
$request = Request::createFromGlobals(); 
$response = $kernel->handle($request); 
$response->send(); 
$kernel->terminate($request, $response); 
 
 |