8000 Remove usage of ClassLoader / ClassCache · cmfcmf/AdventureLookup@7994b85 · GitHub
[go: up one dir, main page]

Skip to content

Commit 7994b85

Browse files
committed
Remove usage of ClassLoader / ClassCache
symfony/symfony#21353 symfony/symfony#20668
1 parent 500a963 commit 7994b85

File tree

4 files changed

+0
-4
lines changed

4 files changed

+0
-4
lines changed

composer.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@
5353
"scripts": {
5454
"symfony-scripts": [
5555
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
56-
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
5756
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
5857
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
5958
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",

web/app.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
include_once __DIR__.'/../var/bootstrap.php.cache';
88

99
$kernel = new AppKernel('prod', false);
10-
$kernel->loadClassCache();
1110
//$kernel = new AppCache($kernel);
1211

1312
// When using the HttpCache, you need to call the method in your front controller instead of relying on the configuration parameter

web/app_dev.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
Debug::enable();
2424

2525
$kernel = new AppKernel('dev', true);
26-
$kernel->loadClassCache();
2726
$request = Request::createFromGlobals();
2827
$response = $kernel->handle($request);
2928
$response->send();

web/app_test.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
$loader = require __DIR__.'/../app/autoload.php';
2222

2323
$kernel = new AppKernel('test', false);
24-
$kernel->loadClassCache();
2524
$request = Request::createFromGlobals();
2625
$response = $kernel->handle($request);
2726
$response->send();

0 commit comments

Comments
 (0)
0