diff options
author | Nils Adermann <naderman@naderman.de> | 2013-09-10 15:31:52 +0200 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2013-09-16 00:39:34 +0200 |
commit | 2a1207b14f7792b935ffd6ffff9d6c89fcce638b (patch) | |
tree | 18719bcb3e9e1d77714d0a9ae145a0aa69118c4c /tests/notification/ext | |
parent | 239381b946e20e98459dfa5f36962df37cd76d82 (diff) | |
download | forums-2a1207b14f7792b935ffd6ffff9d6c89fcce638b.tar forums-2a1207b14f7792b935ffd6ffff9d6c89fcce638b.tar.gz forums-2a1207b14f7792b935ffd6ffff9d6c89fcce638b.tar.bz2 forums-2a1207b14f7792b935ffd6ffff9d6c89fcce638b.tar.xz forums-2a1207b14f7792b935ffd6ffff9d6c89fcce638b.zip |
[ticket/11700] Correclty use namespaces in notifications
PHPBB3-11700
Diffstat (limited to 'tests/notification/ext')
-rw-r--r-- | tests/notification/ext/test/notification/type/test.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/notification/ext/test/notification/type/test.php b/tests/notification/ext/test/notification/type/test.php index 629954efce..cdb921ca3b 100644 --- a/tests/notification/ext/test/notification/type/test.php +++ b/tests/notification/ext/test/notification/type/test.php @@ -7,6 +7,8 @@ * */ +namespace phpbb\notification\type; + /** * @ignore */ @@ -15,7 +17,7 @@ if (!defined('IN_PHPBB')) exit; } -class phpbb_notification_type_test extends \phpbb\notification\type\base +class test extends \phpbb\notification\type\base { public function get_type() { |