Skip to content

Commit

Permalink
Merge pull request #745 from fluoresceco/symfony3.1
Browse files Browse the repository at this point in the history
Quote strings starting '%' in YAML
  • Loading branch information
makasim committed Jun 8, 2016
2 parents b20f588 + 3f8e747 commit 0136c13
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Tests/Functional/app/config/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,24 @@ parameters:

framework:
#esi: ~
#translator: { fallback: %locale% }
#translator: { fallback: "%locale%" }
test: ~
templating: { engines: ['php'] }
session:
storage_id: session.storage.mock_file
secret: %secret%
secret: "%secret%"
router: { resource: "%kernel.root_dir%/config/routing.yml" }
default_locale: %locale%
default_locale: "%locale%"

liip_imagine:
loaders:
default:
filesystem:
data_root: %kernel.root_dir%/web
data_root: "%kernel.root_dir%/web"
resolvers:
default:
web_path:
web_root: %kernel.root_dir%/web
web_root: "%kernel.root_dir%/web"
cache_prefix: media/cache

filter_sets:
Expand Down

0 comments on commit 0136c13

Please sign in to comment.