Skip to content

Commit f0dffcb

Browse files
committed
Merge branch '2.8' into 3.0
* 2.8: [Yaml] always restore the error handler in tests [FrameworkBundle] fix YAML syntax fix YAML syntax in functional tests config
2 parents 2128d52 + 15ecc7b commit f0dffcb

File tree

3 files changed

+6
-6
lines changed
  • src/Symfony/Bundle

3 files changed

+6
-6
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
framework:
22
assets:
33
version: SomeVersionScheme
4-
version_format: %%s?version=%%s
4+
version_format: '%%s?version=%%s'
55
base_urls: http://cdn.example.com
66
packages:
77
images_path:
@@ -11,7 +11,7 @@ framework:
1111
base_urls: ["http://images1.example.com", "http://images2.example.com"]
1212
foo:
1313
version: 1.0.0
14-
version_format: %%s-%%s
14+
version_format: '%%s-%%s'
1515
bar:
1616
base_urls: ["https://bar2.example.com"]
1717
bar_null_version:

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ framework:
1313
only_exceptions: true
1414
enabled: false
1515
router:
16-
resource: %kernel.root_dir%/config/routing.xml
16+
resource: '%kernel.root_dir%/config/routing.xml'
1717
type: xml
1818
session:
1919
storage_id: session.storage.native
@@ -48,7 +48,7 @@ framework:
4848
annotations:
4949
cache: file
5050
debug: true
51-
file_cache_dir: %kernel.cache_dir%/annotations
51+
file_cache_dir: '%kernel.cache_dir%/annotations'
5252
serializer:
5353
enabled: true
5454
enable_annotations: true

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)