Skip to content

Commit 7ccc0d2

Browse files
Merge branch '2.7' into 2.8
* 2.7: [PhpUnitBridge] Revert 7f62133939b1172e1c9924d211e1d315230b3be8 bumped Symfony version to 2.3.40 set s-maxage only if all responses are cacheable updated VERSION for 2.3.39 update CONTRIBUTORS for 2.3.39 updated CHANGELOG for 2.3.39 Improved the "branch" row of the PR table [Debug] Replaced logic for detecting filesystem case sensitivity [Process] Wait a bit less on Windows Use debug member variable Fix typos #18090 1. PHPs session design to PHP's session design 2. Symfony HttpKernel offers to Symfony's HttpKernel offers 3. in which case it it should to in which case it should Fix for Isssue #18091 replace perfom by perform minor #18088 Fix typo for profiler [ci] remove token for composer now that rate limiting is off Conflicts: src/Symfony/Bridge/PhpUnit/composer.json
2 parents 44a70cc + 266adf5 commit 7ccc0d2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

DependencyInjection/Configuration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -708,7 +708,7 @@ private function addAnnotationsSection(ArrayNodeDefinition $rootNode)
708708
->children()
709709
->scalarNode('cache')->defaultValue('file')->end()
710710
->scalarNode('file_cache_dir')->defaultValue('%kernel.cache_dir%/annotations')->end()
711-
->booleanNode('debug')->defaultValue('%kernel.debug%')->end()
711+
->booleanNode('debug')->defaultValue($this->debug)->end()
712712
->end()
713713
->end()
714714
->end()

Tests/DependencyInjection/ConfigurationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ protected static function getBundleDefaultConfig()
170170
'annotations' => array(
171171
'cache' => 'file',
172172
'file_cache_dir' => '%kernel.cache_dir%/annotations',
173-
'debug' => '%kernel.debug%',
173+
'debug' => true,
174174
),
175175
'serializer' => array(
176176
'enabled' => false,

0 commit comments

Comments
 (0)