1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 20:13:22 +01:00

[feature/avatars] Add missing @var to docblocks in avatar manager

PHPBB3-10018
This commit is contained in:
Marc Alexander 2013-01-09 15:50:15 +01:00
parent 7ea0376958
commit 7402add107

View File

@ -22,22 +22,26 @@ class phpbb_avatar_manager
{
/**
* phpBB configuration
* @var phpbb_config
*/
protected $config;
/**
* Array that contains a list of enabled drivers
* @var array
*/
static protected $enabled_drivers = false;
/**
* Array that contains all available avatar drivers which are passed via the
* service container
* @var array
*/
protected $avatar_drivers;
/**
* Service container object
* @var object
*/
protected $container;