Skip to content

Commit 1af6e98

Browse files
committed
Merge branch '2.3' into 2.7
* 2.3: fix YAML syntax in functional tests config
2 parents a6e934c + 9b093c9 commit 1af6e98

File tree

2 files changed

+4
-4
lines changed
  • src/Symfony/Bundle
    • FrameworkBundle/Tests/DependencyInjection/Fixtures/yml
    • SecurityBundle/Tests/Functional/app/config

2 files changed

+4
-4
lines changed

src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/full.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ framework:
1414
only_exceptions: true
1515
enabled: false
1616
router:
17-
resource: %kernel.root_dir%/config/routing.xml
17+
resource: '%kernel.root_dir%/config/routing.xml'
1818
type: xml
1919
session:
2020
storage_id: session.storage.native
@@ -45,7 +45,7 @@ framework:
4545
annotations:
4646
cache: file
4747
debug: true
48-
file_cache_dir: %kernel.cache_dir%/annotations
48+
file_cache_dir: '%kernel.cache_dir%/annotations'
4949
serializer: { enabled: true }
5050
ide: file%%link%%format
5151
request:

src/Symfony/Bundle/SecurityBundle/Tests/Functional/app/config/twig.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ framework:
33

44
# Twig Configuration
55
twig:
6-
debug: %kernel.debug%
7-
strict_variables: %kernel.debug%
6+
debug: '%kernel.debug%'
7+
strict_variables: '%kernel.debug%'

0 commit comments

Comments
 (0)