Skip to content

Commit a6e934c

Browse files
committed
minor symfony#17811 [FrameworkBundle] fix YAML syntax (xabbuh)
This PR was merged into the 2.7 branch. Discussion ---------- [FrameworkBundle] fix YAML syntax | Q | A | ------------- | --- | Fixed tickets | | License | MIT see failing tests in symfony#17809 Commits ------- 2da4038 [FrameworkBundle] fix YAML syntax
2 parents 457967c + 2da4038 commit a6e934c

File tree

1 file changed

+2
-2
lines changed
  • src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml

1 file changed

+2
-2
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:

0 commit comments

Comments
 (0)