-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.php
More file actions
27 lines (22 loc) · 787 Bytes
/
app.php
File metadata and controls
27 lines (22 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
use Symfony\Component\HttpFoundation\Request;
require __DIR__.'/vendor/autoload.php';
if (PHP_VERSION_ID < 70000) {
include_once __DIR__.'./var/bootstrap.php.cache';
}
if (file_exists('./src/config.php') === false) {
header('Location:' . './setup/');
exit();
}
//$kernel = new AppKernel('dev', true);
$kernel = new AppKernel('prod', false);
if (PHP_VERSION_ID < 70000) {
$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);