Skip to content

Commit

Permalink
Not quoting the scalar is deprecated since Symfony 2.8 and will throw…
Browse files Browse the repository at this point in the history
… a ParseException in 3.0
  • Loading branch information
BirknerAlex committed Feb 24, 2016
1 parent 1b99067 commit 697ff44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Resources/config/services.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:
code_mirror.asset_manager:
class: Solution\CodeMirrorBundle\Asset\AssetManager
arguments: [@file_locator, %code_mirror.mode_dirs%, %code_mirror.themes_dirs%, %kernel.cache_dir%, %kernel.environment%]
arguments: ["@file_locator", %code_mirror.mode_dirs%, %code_mirror.themes_dirs%, %kernel.cache_dir%, %kernel.environment%]

code_mirror.form.type:
class: %code_mirror.form_type%
Expand All @@ -11,6 +11,6 @@ services:

code_mirror.twig.extension:
class: Solution\CodeMirrorBundle\Twig\CodeMirrorExtension
arguments: [@code_mirror.asset_manager]
arguments: ["@code_mirror.asset_manager"]
tags:
- { name: twig.extension }

0 comments on commit 697ff44

Please sign in to comment.