diff options
| author | Nathan Guse <nathaniel.guse@gmail.com> | 2012-10-18 18:45:43 -0500 |
|---|---|---|
| committer | Nathan Guse <nathaniel.guse@gmail.com> | 2012-10-18 18:50:04 -0500 |
| commit | eb07b3ad9cfb37fd2943088170e380bff2db94a3 (patch) | |
| tree | be1683fa1571f0a9c0f5bdfc2a88a62326abca3c /phpBB/includes/notification/manager.php | |
| parent | ae670cc87df197e44b768667b853e1dae3009b4d (diff) | |
| download | forums-eb07b3ad9cfb37fd2943088170e380bff2db94a3.tar forums-eb07b3ad9cfb37fd2943088170e380bff2db94a3.tar.gz forums-eb07b3ad9cfb37fd2943088170e380bff2db94a3.tar.bz2 forums-eb07b3ad9cfb37fd2943088170e380bff2db94a3.tar.xz forums-eb07b3ad9cfb37fd2943088170e380bff2db94a3.zip | |
[ticket/11103] Expand class vars and use docblocks for phpBB classes
PHPBB3-11103
Diffstat (limited to 'phpBB/includes/notification/manager.php')
| -rw-r--r-- | phpBB/includes/notification/manager.php | 29 |
1 files changed, 27 insertions, 2 deletions
diff --git a/phpBB/includes/notification/manager.php b/phpBB/includes/notification/manager.php index 03776de2b4..a98e1f7af3 100644 --- a/phpBB/includes/notification/manager.php +++ b/phpBB/includes/notification/manager.php @@ -21,7 +21,32 @@ if (!defined('IN_PHPBB')) */ class phpbb_notification_manager { - protected $db, $cache, $template, $extension_manager, $user, $auth, $config, $phpbb_root_path, $php_ext = null; + /** @var dbal */ + protected $db = null; + + /** @var phpbb_cache_service */ + protected $cache = null; + + /** @var phpbb_template */ + protected $template = null; + + /** @var phpbb_extension_manager */ + protected $extension_manager = null; + + /** @var phpbb_user */ + protected $user = null; + + /** @var phpbb_auth */ + protected $auth = null; + + /** @var phpbb_config */ + protected $config = null; + + /** @var string */ + protected $phpbb_root_path = null; + + /** @var string */ + protected $php_ext = null; /** * Users loaded from the DB @@ -71,7 +96,7 @@ class phpbb_notification_manager 'count_total' => false, ), $options); - // If all_unread, count_unread mus be true + // If all_unread, count_unread must be true $options['count_unread'] = ($options['all_unread']) ? true : $options['count_unread']; // Anonymous users and bots never receive notifications |
