From 8619ff35268365852bd71b4e80f87cbb917c67be Mon Sep 17 00:00:00 2001 From: rxu Date: Sat, 30 Nov 2024 11:46:16 +0700 Subject: [PATCH] [ticket/17445] Add missing class property definitions PHPBB-17445 --- phpBB/phpbb/notification/method/webpush.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/phpBB/phpbb/notification/method/webpush.php b/phpBB/phpbb/notification/method/webpush.php index 94e5dfa20f..25b22d54d8 100644 --- a/phpBB/phpbb/notification/method/webpush.php +++ b/phpBB/phpbb/notification/method/webpush.php @@ -39,9 +39,18 @@ class webpush extends base implements extended_method_interface /** @var log_interface */ protected $log; + /** @var user_loader */ + protected $user_loader; + /** @var user */ protected $user; + /** @var string */ + protected $phpbb_root_path; + + /** @var string */ + protected $php_ext; + /** @var string Notification Web Push table */ protected $notification_webpush_table;