Skip to content

Commit 117c8ba

Browse files
committed
disabled loadClassCache()
1 parent f06afc5 commit 117c8ba

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

web/app.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use Symfony\Component\HttpFoundation\Request;
88

99
$kernel = new AppKernel('prod', false);
10-
$kernel->loadClassCache();
10+
//$kernel->loadClassCache();
1111
//$kernel = new AppCache($kernel);
1212
$request = Request::createFromGlobals();
1313
$response = $kernel->handle($request);

web/app_dev.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
use Symfony\Component\HttpFoundation\Request;
2424

2525
$kernel = new AppKernel('dev', true);
26-
$kernel->loadClassCache();
26+
//$kernel->loadClassCache();
2727
$request = Request::createFromGlobals();
2828
$response = $kernel->handle($request);
2929
$response->send();

0 commit comments

Comments
 (0)