Skip to content

Commit 1529d18

Browse files
committed
Merge branch '2.7' into 2.8
* 2.7: [FrameworkBundle] fix YAML syntax fix YAML syntax in functional tests config
2 parents ae78ee7 + 74839d8 commit 1529d18

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

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:

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
@@ -47,7 +47,7 @@ framework:
4747
annotations:
4848
cache: file
4949
debug: true
50-
file_cache_dir: %kernel.cache_dir%/annotations
50+
file_cache_dir: '%kernel.cache_dir%/annotations'
5151
serializer:
5252
enabled: true
5353
enable_annotations: true

0 commit comments

Comments
 (0)