2015-01-22 07:30:07 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
|
|
|
2015-12-22 12:00:37 +00:00
|
|
|
/**
|
|
|
|
* @var Composer\Autoload\ClassLoader
|
|
|
|
*/
|
|
|
|
$loader = require __DIR__.'/../app/autoload.php';
|
2016-01-14 17:15:07 +00:00
|
|
|
include_once __DIR__.'/../var/bootstrap.php.cache';
|
2015-01-22 07:30:07 +00:00
|
|
|
|
|
|
|
$kernel = new AppKernel('prod', false);
|
|
|
|
$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);
|