aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/config/default/container/services_text_formatter.yml
diff options
context:
space:
mode:
authorMatt Friedman <maf675@gmail.com>2015-12-07 13:11:22 -0800
committerMatt Friedman <maf675@gmail.com>2015-12-07 13:11:22 -0800
commitd9d89cad94eada62e900a012046b8d45c5aa3129 (patch)
tree4274286fca6fee80764f95cdd310ecf1080a391e /phpBB/config/default/container/services_text_formatter.yml
parentf14a9b70694ef1ff575e7db46fdcdec8c9bc87e4 (diff)
downloadforums-d9d89cad94eada62e900a012046b8d45c5aa3129.tar
forums-d9d89cad94eada62e900a012046b8d45c5aa3129.tar.gz
forums-d9d89cad94eada62e900a012046b8d45c5aa3129.tar.bz2
forums-d9d89cad94eada62e900a012046b8d45c5aa3129.tar.xz
forums-d9d89cad94eada62e900a012046b8d45c5aa3129.zip
[ticket/14247] Use quotes around @ and % strings in YAML
PHPBB3-14247
Diffstat (limited to 'phpBB/config/default/container/services_text_formatter.yml')
-rw-r--r--phpBB/config/default/container/services_text_formatter.yml58
1 files changed, 29 insertions, 29 deletions
diff --git a/phpBB/config/default/container/services_text_formatter.yml b/phpBB/config/default/container/services_text_formatter.yml
index 5a3307175f..f86d30658e 100644
--- a/phpBB/config/default/container/services_text_formatter.yml
+++ b/phpBB/config/default/container/services_text_formatter.yml
@@ -1,5 +1,5 @@
parameters:
- text_formatter.cache.dir: %core.root_path%cache/%core.environment%/
+ text_formatter.cache.dir: '%core.root_path%cache/%core.environment%/'
text_formatter.cache.parser.key: _text_formatter_parser
text_formatter.cache.renderer.key: _text_formatter_renderer
@@ -10,12 +10,12 @@ services:
text_formatter.data_access:
class: phpbb\textformatter\data_access
arguments:
- - @dbal.conn
- - %tables.bbcodes%
- - %tables.smilies%
- - %tables.styles%
- - %tables.words%
- - %core.root_path%styles/
+ - '@dbal.conn'
+ - '%tables.bbcodes%'
+ - '%tables.smilies%'
+ - '%tables.styles%'
+ - '%tables.words%'
+ - '%core.root_path%styles/'
text_formatter.parser:
alias: text_formatter.s9e.parser
@@ -29,41 +29,41 @@ services:
text_formatter.s9e.factory:
class: phpbb\textformatter\s9e\factory
arguments:
- - @text_formatter.data_access
- - @cache.driver
- - @dispatcher
- - @config
- - %text_formatter.cache.dir%
- - %text_formatter.cache.parser.key%
- - %text_formatter.cache.renderer.key%
+ - '@text_formatter.data_access'
+ - '@cache.driver'
+ - '@dispatcher'
+ - '@config'
+ - '%text_formatter.cache.dir%'
+ - '%text_formatter.cache.parser.key%'
+ - '%text_formatter.cache.renderer.key%'
text_formatter.s9e.parser:
class: phpbb\textformatter\s9e\parser
arguments:
- - @cache.driver
- - %text_formatter.cache.parser.key%
- - @text_formatter.s9e.factory
- - @dispatcher
+ - '@cache.driver'
+ - '%text_formatter.cache.parser.key%'
+ - '@text_formatter.s9e.factory'
+ - '@dispatcher'
text_formatter.s9e.quote_helper:
class: phpbb\textformatter\s9e\quote_helper
arguments:
- - @user
- - %core.root_path%
- - %core.php_ext%
+ - '@user'
+ - '%core.root_path%'
+ - '%core.php_ext%'
text_formatter.s9e.renderer:
class: phpbb\textformatter\s9e\renderer
arguments:
- - @cache.driver
- - %text_formatter.cache.dir%
- - %text_formatter.cache.renderer.key%
- - @text_formatter.s9e.factory
- - @dispatcher
+ - '@cache.driver'
+ - '%text_formatter.cache.dir%'
+ - '%text_formatter.cache.renderer.key%'
+ - '@text_formatter.s9e.factory'
+ - '@dispatcher'
calls:
- - [configure_quote_helper, [@text_formatter.s9e.quote_helper]]
- - [configure_smilies_path, [@config, @path_helper]]
- - [configure_user, [@user, @config, @auth]]
+ - [configure_quote_helper, ['@text_formatter.s9e.quote_helper']]
+ - [configure_smilies_path, ['@config', '@path_helper']]
+ - [configure_user, ['@user', '@config', '@auth']]
text_formatter.s9e.utils:
class: phpbb\textformatter\s9e\utils