diff options
| author | Matt Friedman <maf675@gmail.com> | 2015-10-13 23:40:52 -0700 |
|---|---|---|
| committer | Matt Friedman <maf675@gmail.com> | 2015-10-13 23:40:52 -0700 |
| commit | b64a37d451132dcf7ef5fc3d6e700a6fb6decd90 (patch) | |
| tree | 8432ace2597886cfbf20bcfdd27e39cd17c1f6b1 /tests/mock | |
| parent | 03cb2a7b0c5a3756522c27d708bdaf0bfa771706 (diff) | |
| download | forums-b64a37d451132dcf7ef5fc3d6e700a6fb6decd90.tar forums-b64a37d451132dcf7ef5fc3d6e700a6fb6decd90.tar.gz forums-b64a37d451132dcf7ef5fc3d6e700a6fb6decd90.tar.bz2 forums-b64a37d451132dcf7ef5fc3d6e700a6fb6decd90.tar.xz forums-b64a37d451132dcf7ef5fc3d6e700a6fb6decd90.zip | |
[ticket/14237] Use $language class for notifications
PHPBB3-14237
Diffstat (limited to 'tests/mock')
| -rw-r--r-- | tests/mock/notification_type_post.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/mock/notification_type_post.php b/tests/mock/notification_type_post.php index fd2d1b63cd..4116fecf5e 100644 --- a/tests/mock/notification_type_post.php +++ b/tests/mock/notification_type_post.php @@ -21,11 +21,12 @@ if (!defined('IN_PHPBB')) class phpbb_mock_notification_type_post extends \phpbb\notification\type\post { - public function __construct($user_loader, $db, $cache, $user, $auth, $config, $phpbb_root_path, $php_ext, $notification_types_table, $user_notifications_table) + public function __construct($user_loader, $db, $cache, $language, $user, $auth, $config, $phpbb_root_path, $php_ext, $notification_types_table, $user_notifications_table) { $this->user_loader = $user_loader; $this->db = $db; $this->cache = $cache; + $this->language = $language; $this->user = $user; $this->auth = $auth; $this->config = $config; |
