20 lines
644 B
PHP
20 lines
644 B
PHP
<?php
|
|
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
|
|
/** @var \Composer\Autoload\ClassLoader $loader */
|
|
$loader = require __DIR__.'/../app/autoload.php';
|
|
include_once __DIR__.'/../app/bootstrap.php.cache';
|
|
|
|
umask(0002);
|
|
|
|
$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); |