Skip to content

Commit

Permalink
bug #20816 [FrameworkBundle] Removed kernel.debug from the cache pool…
Browse files Browse the repository at this point in the history
… 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
  • Loading branch information
fabpot committed Dec 8, 2016
2 parents ea78cf8 + 8e1dac5 commit 4317a7a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -30,7 +30,7 @@ public function process(ContainerBuilder $container)
{
$namespaceSuffix = '';

foreach (array('name', 'root_dir', 'environment', 'debug') as $key) {
foreach (array('name', 'root_dir', 'environment') as $key) {
if ($container->hasParameter('kernel.'.$key)) {
$namespaceSuffix .= '.'.$container->getParameter('kernel.'.$key);
}
Expand Down

0 comments on commit 4317a7a

Please sign in to comment.