diff options
author | marwolaethblack <a.unal677@gmail.com> | 2017-11-22 12:37:48 +0100 |
---|---|---|
committer | marwolaethblack <a.unal677@gmail.com> | 2017-11-22 12:37:48 +0100 |
commit | 4312b353dbb4b448d551975b63db9c95b3eef4f5 (patch) | |
tree | 90c991bc462526725593f82e56b288cfce2c7e03 /web/app.php |
initial commit
Diffstat (limited to 'web/app.php')
-rw-r--r-- | web/app.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/web/app.php b/web/app.php new file mode 100644 index 0000000..943d089 --- /dev/null +++ b/web/app.php @@ -0,0 +1,21 @@ +<?php + +use Symfony\Component\HttpFoundation\Request; + +require __DIR__.'/../vendor/autoload.php'; +if (PHP_VERSION_ID < 70000) { + include_once __DIR__.'/../var/bootstrap.php.cache'; +} + +$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); |