diff options
author | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-09-26 12:02:17 +0300 |
---|---|---|
committer | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-09-26 12:02:17 +0300 |
commit | 0e6ac7511eeb795ea3236b304d697660ed9f7e43 (patch) | |
tree | f5ca1e193726d33389e4540ff60a3b4ffa925ffb /tests/mock | |
parent | 779688b56b4fc22f975cb1b2a39b55d4b9afc231 (diff) | |
download | forums-0e6ac7511eeb795ea3236b304d697660ed9f7e43.tar forums-0e6ac7511eeb795ea3236b304d697660ed9f7e43.tar.gz forums-0e6ac7511eeb795ea3236b304d697660ed9f7e43.tar.bz2 forums-0e6ac7511eeb795ea3236b304d697660ed9f7e43.tar.xz forums-0e6ac7511eeb795ea3236b304d697660ed9f7e43.zip |
[ticket/11868] Replace phpbb_request_interface references
PHPBB3-11868
Diffstat (limited to 'tests/mock')
-rw-r--r-- | tests/mock/request.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/mock/request.php b/tests/mock/request.php index ed0744c8cf..60ba725abd 100644 --- a/tests/mock/request.php +++ b/tests/mock/request.php @@ -74,7 +74,7 @@ class phpbb_mock_request implements \phpbb\request\request_interface return array_keys($this->data[$super_global]); } - public function get_super_global($super_global = phpbb_request_interface::REQUEST) + public function get_super_global($super_global = \phpbb\request\request_interface::REQUEST) { return $this->data[$super_global]; } |