Merge branch '2.7' into 2.8

* 2.7:
  [FrameworkBundle] fix YAML syntax
  fix YAML syntax in functional tests config
This commit is contained in:
Fabien Potencier 2016-02-16 08:16:12 +01:00
commit 15ecc7bf63
3 changed files with 6 additions and 6 deletions

View File

@ -1,7 +1,7 @@
framework:
assets:
version: SomeVersionScheme
version_format: %%s?version=%%s
version_format: '%%s?version=%%s'
base_urls: http://cdn.example.com
packages:
images_path:
@ -11,7 +11,7 @@ framework:
base_urls: ["http://images1.example.com", "http://images2.example.com"]
foo:
version: 1.0.0
version_format: %%s-%%s
version_format: '%%s-%%s'
bar:
base_urls: ["https://bar2.example.com"]
bar_null_version:

View File

@ -14,7 +14,7 @@ framework:
only_exceptions: true
enabled: false
router:
resource: %kernel.root_dir%/config/routing.xml
resource: '%kernel.root_dir%/config/routing.xml'
type: xml
session:
storage_id: session.storage.native
@ -47,7 +47,7 @@ framework:
annotations:
cache: file
debug: true
file_cache_dir: %kernel.cache_dir%/annotations
file_cache_dir: '%kernel.cache_dir%/annotations'
serializer:
enabled: true
enable_annotations: true

View File

@ -3,5 +3,5 @@ framework:
# Twig Configuration
twig:
debug: %kernel.debug%
strict_variables: %kernel.debug%
debug: '%kernel.debug%'
strict_variables: '%kernel.debug%'