mirror of
https://github.com/phpbb/phpbb.git
synced 2025-09-08 23:31:04 +02:00
[ticket/14247] Use quotes around @ and % strings in YAML
PHPBB3-14247
This commit is contained in:
@@ -3,30 +3,30 @@ services:
|
||||
phpbb.report.controller:
|
||||
class: phpbb\report\controller\report
|
||||
arguments:
|
||||
- @config
|
||||
- @user
|
||||
- @template
|
||||
- @controller.helper
|
||||
- @request
|
||||
- @captcha.factory
|
||||
- @phpbb.report.handler_factory
|
||||
- @phpbb.report.report_reason_list_provider
|
||||
- %core.root_path%
|
||||
- %core.php_ext%
|
||||
- '@config'
|
||||
- '@user'
|
||||
- '@template'
|
||||
- '@controller.helper'
|
||||
- '@request'
|
||||
- '@captcha.factory'
|
||||
- '@phpbb.report.handler_factory'
|
||||
- '@phpbb.report.report_reason_list_provider'
|
||||
- '%core.root_path%'
|
||||
- '%core.php_ext%'
|
||||
|
||||
# ----- Report handler factory -----
|
||||
phpbb.report.handler_factory:
|
||||
class: phpbb\report\handler_factory
|
||||
arguments:
|
||||
- @service_container
|
||||
- '@service_container'
|
||||
|
||||
# ----- Report UI provider -----
|
||||
phpbb.report.report_reason_list_provider:
|
||||
class: phpbb\report\report_reason_list_provider
|
||||
arguments:
|
||||
- @dbal.conn.driver
|
||||
- @template
|
||||
- @user
|
||||
- '@dbal.conn.driver'
|
||||
- '@template'
|
||||
- '@user'
|
||||
|
||||
# ----- Report handlers -----
|
||||
# Scope MUST be prototype for all the handlers to work correctly.
|
||||
@@ -34,20 +34,20 @@ services:
|
||||
class: phpbb\report\report_handler_pm
|
||||
scope: prototype
|
||||
arguments:
|
||||
- @dbal.conn.driver
|
||||
- @dispatcher
|
||||
- @config
|
||||
- @auth
|
||||
- @user
|
||||
- @notification_manager
|
||||
- '@dbal.conn.driver'
|
||||
- '@dispatcher'
|
||||
- '@config'
|
||||
- '@auth'
|
||||
- '@user'
|
||||
- '@notification_manager'
|
||||
|
||||
phpbb.report.handlers.report_handler_post:
|
||||
class: phpbb\report\report_handler_post
|
||||
scope: prototype
|
||||
arguments:
|
||||
- @dbal.conn.driver
|
||||
- @dispatcher
|
||||
- @config
|
||||
- @auth
|
||||
- @user
|
||||
- @notification_manager
|
||||
- '@dbal.conn.driver'
|
||||
- '@dispatcher'
|
||||
- '@config'
|
||||
- '@auth'
|
||||
- '@user'
|
||||
- '@notification_manager'
|
||||
|
Reference in New Issue
Block a user