8000 bug #20816 [FrameworkBundle] Removed kernel.debug from the cache pool… · symfony/symfony@4317a7a · GitHub
[go: up one dir, main page]

Skip to content

Commit 4317a7a

Browse files
committed
bug #20816 [FrameworkBundle] Removed kernel.debug from the cache pool namespace seed (Sander Toonen)
This PR was merged into the 3.1 branch. Discussion ---------- [FrameworkBundle] Removed kernel.debug from the cache pool namespace seed | Q | A | ------------- | --- | Branch? | 3.1 | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | #20780 | License | MIT | Doc PR | Commits ------- 8e1dac5 [FrameworkBundle] Removed the kernel.debug parameter from the cache pool namespace seed
2 parents ea78cf8 + 8e1dac5 commit 4317a7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/CachePoolPass.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public function process(ContainerBuilder $container)
3030
{
3131
$namespaceSuffix = '';
3232

33-
foreach (array('name', 'root_dir', 'environment', 'debug') as $key) {
33+
foreach (array('name', 'root_dir', 'environment') as $key) {
3434
if ($container->hasParameter('kernel.'.$key)) {
3535
$namespaceSuffix .= '.'.$container->getParameter('kernel.'.$key);
3636
}

0 commit comments

Comments
 (0)
0