diff options
author | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-07-09 21:50:34 +0200 |
---|---|---|
committer | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-07-13 22:41:14 +0200 |
commit | c1deeab318b5a2c168f044a6a3d0f2d0897b8cd9 (patch) | |
tree | 2f2cf42cfca10b7d6f0bfe755eb67b2cadb484a9 /phpBB/config | |
parent | fc34057f288c6b8c656a0ed1ac2cb5a86f86206d (diff) | |
download | forums-c1deeab318b5a2c168f044a6a3d0f2d0897b8cd9.tar forums-c1deeab318b5a2c168f044a6a3d0f2d0897b8cd9.tar.gz forums-c1deeab318b5a2c168f044a6a3d0f2d0897b8cd9.tar.bz2 forums-c1deeab318b5a2c168f044a6a3d0f2d0897b8cd9.tar.xz forums-c1deeab318b5a2c168f044a6a3d0f2d0897b8cd9.zip |
[ticket/11444] Fix services definition
PHPBB3-11444
Diffstat (limited to 'phpBB/config')
-rw-r--r-- | phpBB/config/default/container/services_notification.yml | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/phpBB/config/default/container/services_notification.yml b/phpBB/config/default/container/services_notification.yml index f82dd4b5a5..1076d13cce 100644 --- a/phpBB/config/default/container/services_notification.yml +++ b/phpBB/config/default/container/services_notification.yml @@ -23,7 +23,7 @@ services: - { name: service_collection, tag: notification.type } notification.type.base: - abstract: true + abstract: true arguments: - @dbal.conn - @user @@ -45,7 +45,7 @@ services: notification.type.approve_post: class: phpbb\notification\type\approve_post scope: prototype - parent: notification.type.base + parent: notification.type.post tags: - { name: notification.type } @@ -59,16 +59,14 @@ services: notification.type.bookmark: class: phpbb\notification\type\bookmark scope: prototype - parent: notification.type.base - calls: - - [set_config, ["@config"]] + parent: notification.type.post tags: - { name: notification.type } notification.type.disapprove_post: class: phpbb\notification\type\disapprove_post scope: prototype - parent: notification.type.base + parent: notification.type.post tags: - { name: notification.type } @@ -118,14 +116,14 @@ services: notification.type.post_in_queue: class: phpbb\notification\type\post_in_queue scope: prototype - parent: notification.type.base + parent: notification.type.post tags: - { name: notification.type } notification.type.quote: class: phpbb\notification\type\quote scope: prototype - parent: notification.type.base + parent: notification.type.post calls: - [set_utils, [@text_formatter.utils]] tags: @@ -134,28 +132,28 @@ services: notification.type.report_pm: class: phpbb\notification\type\report_pm scope: prototype - parent: notification.type.base + parent: notification.type.pm tags: - { name: notification.type } notification.type.report_pm_closed: class: phpbb\notification\type\report_pm_closed scope: prototype - parent: notification.type.base + parent: notification.type.pm tags: - { name: notification.type } notification.type.report_post: class: phpbb\notification\type\report_post scope: prototype - parent: notification.type.base + parent: notification.type.post tags: - { name: notification.type } notification.type.report_post_closed: class: phpbb\notification\type\report_post_closed scope: prototype - parent: notification.type.base + parent: notification.type.post tags: - { name: notification.type } |