aboutsummaryrefslogblamecommitdiffhomepage
path: root/web/app.php
blob: 3427e133e6ad89ff87f319e2b081b3b6c08278e4 (plain) (tree)
1
2
3
4
5
6
7

     

                                             
                                          
 
                                       







                                                                                                                                   
<?php

use Symfony\Component\HttpFoundation\Request;

require __DIR__.'/../vendor/autoload.php';

$kernel = new AppKernel('prod', false);
//$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);