1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-07 09:16:55 +02:00

[ticket/13844] Add events

PHPBB3-13844
This commit is contained in:
Joas Schilling
2015-05-20 00:23:42 +02:00
parent 6dcc14bc58
commit 077051fef5
4 changed files with 63 additions and 17 deletions

View File

@@ -11,7 +11,7 @@
*
*/
class phpbb_language_test extends phpbb_test_case
class phpbb_help_manager_test extends phpbb_test_case
{
/** @var \phpbb\help\manager */
protected $manager;
@@ -30,8 +30,9 @@ class phpbb_language_test extends phpbb_test_case
->getMock();
$this->manager = new \phpbb\help\manager(
$this->template,
$this->language
new \phpbb_mock_event_dispatcher(),
$this->language,
$this->template
);
}