diff options
author | Jeremy Benoist <jeremy.benoist@gmail.com> | 2018-10-24 21:02:35 +0200 |
---|---|---|
committer | Jeremy Benoist <jeremy.benoist@gmail.com> | 2018-11-28 22:04:54 +0100 |
commit | 6fc95673df5349d682eb6ca6185f894eb711d13a (patch) | |
tree | b825799c92eb8f41b4f55273a6c959125699eea9 /web/app.php | |
parent | 0f159f8fc1dea68552dbfa845fa9a24a95953018 (diff) | |
download | wallabag-6fc95673df5349d682eb6ca6185f894eb711d13a.tar.gz wallabag-6fc95673df5349d682eb6ca6185f894eb711d13a.tar.zst wallabag-6fc95673df5349d682eb6ca6185f894eb711d13a.zip |
Cleanup
Diffstat (limited to 'web/app.php')
-rw-r--r-- | web/app.php | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/web/app.php b/web/app.php index 4c2c4650..3427e133 100644 --- a/web/app.php +++ b/web/app.php | |||
@@ -2,14 +2,9 @@ | |||
2 | 2 | ||
3 | use Symfony\Component\HttpFoundation\Request; | 3 | use Symfony\Component\HttpFoundation\Request; |
4 | 4 | ||
5 | /** | 5 | require __DIR__.'/../vendor/autoload.php'; |
6 | * @var Composer\Autoload\ClassLoader | ||
7 | */ | ||
8 | $loader = require __DIR__.'/../app/autoload.php'; | ||
9 | include_once __DIR__.'/../var/bootstrap.php.cache'; | ||
10 | 6 | ||
11 | $kernel = new AppKernel('prod', false); | 7 | $kernel = new AppKernel('prod', false); |
12 | $kernel->loadClassCache(); | ||
13 | //$kernel = new AppCache($kernel); | 8 | //$kernel = new AppCache($kernel); |
14 | 9 | ||
15 | // When using the HttpCache, you need to call the method in your front controller instead of relying on the configuration parameter | 10 | // When using the HttpCache, you need to call the method in your front controller instead of relying on the configuration parameter |