Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rxu committed Nov 28, 2024
1 parent 8c3dd7b commit 4c4c8ca
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions notification/method/webpush.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
use phpbb\controller\helper;
use phpbb\db\driver\driver_interface;
use phpbb\log\log_interface;
гыу \phpbb\notification\method\base;
use phpbb\notification\type\type_interface;
use phpbb\path_helper;
use phpbb\user;
Expand All @@ -26,7 +27,7 @@
* Web Push notification method class
* This class handles sending push messages for notifications
*/
class webpush extends \phpbb\notification\method\base implements extended_method_interface
class webpush extends base implements extended_method_interface
{
/** @var config */
protected $config;
Expand Down Expand Up @@ -72,8 +73,6 @@ class webpush extends \phpbb\notification\method\base implements extended_method
public function __construct(config $config, driver_interface $db, log_interface $log, user_loader $user_loader, user $user, path_helper $path_helper,
string $phpbb_root_path, string $php_ext, string $notification_webpush_table, string $push_subscriptions_table)
{
parent::__construct($user_loader, $phpbb_root_path, $php_ext);

$this->config = $config;
$this->db = $db;
$this->log = $log;
Expand Down

0 comments on commit 4c4c8ca

Please sign in to comment.