1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-29 11:10:18 +02:00

[ticket/14247] Use quotes around @ and % strings in YAML

PHPBB3-14247
This commit is contained in:
Matt Friedman
2015-12-07 13:11:22 -08:00
parent f14a9b7069
commit d9d89cad94
52 changed files with 1120 additions and 1120 deletions

View File

@@ -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