aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Zelent <zelent.marcin@gmail.com>2018-03-16 17:53:32 +0100
committerMarcin Zelent <zelent.marcin@gmail.com>2018-03-16 17:53:32 +0100
commit1ab2b90b02705e206680b5428bf1fbaec6438132 (patch)
tree8ee964fdf84ff49c22ac6449a178da9d1e67eeb0 /web/app.php
parented01011dfb563e7d8ab13b6a0718eed7bf857880 (diff)
Removed old files.
Diffstat (limited to 'web/app.php')
-rw-r--r--web/app.php21
1 files changed, 0 insertions, 21 deletions
diff --git a/web/app.php b/web/app.php
deleted file mode 100644
index 943d089..0000000
--- a/web/app.php
+++ /dev/null
@@ -1,21 +0,0 @@
-<?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);