mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
[ticket/17135] Update Symfony mailer
PHPBB-17135
This commit is contained in:
parent
e3ed54f0b5
commit
e8cf35c583
1 changed files with 4 additions and 1 deletions
|
@ -171,6 +171,9 @@ class notification_method_webpush_test extends phpbb_tests_notification_base
|
|||
$ban_manager = new \phpbb\ban\manager($collection, new \phpbb\cache\driver\dummy(), $this->db, $this->language, $this->log, $user, 'phpbb_bans', 'phpbb_users');
|
||||
$phpbb_container->set('ban.manager', $ban_manager);
|
||||
|
||||
$messenger_method_collection = new \phpbb\di\service_collection($phpbb_container);
|
||||
$phpbb_container->set('messenger.method_collection', $messenger_method_collection);
|
||||
|
||||
$this->notification_method_webpush = new \phpbb\notification\method\webpush(
|
||||
$phpbb_container->get('config'),
|
||||
$phpbb_container->get('dbal.conn'),
|
||||
|
@ -180,7 +183,7 @@ class notification_method_webpush_test extends phpbb_tests_notification_base
|
|||
$phpbb_root_path,
|
||||
$phpEx,
|
||||
$phpbb_container->getParameter('tables.notification_push'),
|
||||
$phpbb_container->getParameter('tables.push_subscriptions'),
|
||||
$phpbb_container->getParameter('tables.push_subscriptions')
|
||||
);
|
||||
|
||||
$phpbb_container->set('notification.method.webpush', $this->notification_method_webpush);
|
||||
|
|
Loading…
Add table
Reference in a new issue