Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit a6cee1d

Browse filesBrowse files
committed
Remove usage of ClassLoader / ClassCache
symfony/symfony#21353 symfony/symfony#20668
1 parent da3aad7 commit a6cee1d
Copy full SHA for a6cee1d

File tree

4 files changed

+0
-4
lines changed
Filter options

4 files changed

+0
-4
lines changed

‎composer.json

Copy file name to clipboardExpand all lines: composer.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@
5454
"scripts": {
5555
"symfony-scripts": [
5656
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
57-
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
5857
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
5958
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
6059
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",

‎web/app.php

Copy file name to clipboardExpand all lines: web/app.php
-1Lines 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

Copy file name to clipboardExpand all lines: web/app_dev.php
-1Lines 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

Copy file name to clipboardExpand all lines: web/app_test.php
-1Lines 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)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.