Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Quote strings starting '%' in YAML #745

Merged
merged 1 commit into from
Jun 8, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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