copypaste2/web/app.php

17 lines
640 B
PHP
Raw Normal View History

2015-03-02 16:59:13 +00:00
<?php
use Symfony\Component\HttpFoundation\Request;
require __DIR__.'/../vendor/autoload.php';
2016-12-19 00:36:48 +00:00
if (PHP_VERSION_ID < 70000) {
include_once __DIR__.'/../app/bootstrap.php.cache';
2016-12-19 00:36:48 +00:00
}
2015-03-02 16:59:13 +00:00
$kernel = new AppKernel('prod', false);
2016-12-19 00:36:48 +00:00
if (PHP_VERSION_ID < 70000) {
$kernel->loadClassCache();
}
2015-03-02 16:59:13 +00:00
//$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();
2016-12-19 00:36:48 +00:00
$kernel->terminate($request, $response);