Skip to content

Commit 84ab9e7

Browse files
committed
[HttpKernel] Fix variable conflicting name
1 parent addb929 commit 84ab9e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -473,8 +473,8 @@ protected function initializeBundles()
473473
$hierarchy[] = $name;
474474
}
475475

476-
foreach ($hierarchy as $bundle) {
477-
$this->bundleMap[$bundle] = $bundleMap;
476+
foreach ($hierarchy as $hierarchyBundle) {
477+
$this->bundleMap[$hierarchyBundle] = $bundleMap;
478478
array_pop($bundleMap);
479479
}
480480
}

0 commit comments

Comments
 (0)