diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-04-11 18:09:25 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-05-29 02:14:29 +0200 |
commit | fffb07fd91b42d64e71e16a13bcdde87114fad19 (patch) | |
tree | b0733d3cc0fab9186b1090b91a4671401d6c1765 /phpBB/config | |
parent | 6c287e57fc3d93b98632d19933968ce1bed9dee2 (diff) | |
download | forums-fffb07fd91b42d64e71e16a13bcdde87114fad19.tar forums-fffb07fd91b42d64e71e16a13bcdde87114fad19.tar.gz forums-fffb07fd91b42d64e71e16a13bcdde87114fad19.tar.bz2 forums-fffb07fd91b42d64e71e16a13bcdde87114fad19.tar.xz forums-fffb07fd91b42d64e71e16a13bcdde87114fad19.zip |
[ticket/10073] Use namespaces and fix all class names
PHPBB3-10073
Diffstat (limited to 'phpBB/config')
-rw-r--r-- | phpBB/config/services.yml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/phpBB/config/services.yml b/phpBB/config/services.yml index 4de47f750f..11a13c6b5f 100644 --- a/phpBB/config/services.yml +++ b/phpBB/config/services.yml @@ -238,6 +238,36 @@ services: - %core.php_ext% - %tables.log% + message.form.admin: + class: phpbb\message\admin_form + arguments: + - @auth + - @config + - @dbal.conn + - @user + - %core.root_path% + - %core.php_ext% + + message.form.topic: + class: phpbb\message\topic_form + arguments: + - @auth + - @config + - @dbal.conn + - @user + - %core.root_path% + - %core.php_ext% + + message.form.user: + class: phpbb\message\user_form + arguments: + - @auth + - @config + - @dbal.conn + - @user + - %core.root_path% + - %core.php_ext% + notification_manager: class: phpbb\notification\manager arguments: |