1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-02 23:07:39 +02: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 * phpBB configuration
* @var phpbb_config
*/ */
protected $config; protected $config;
/** /**
* Array that contains a list of enabled drivers * Array that contains a list of enabled drivers
* @var array
*/ */
static protected $enabled_drivers = false; static protected $enabled_drivers = false;
/** /**
* Array that contains all available avatar drivers which are passed via the * Array that contains all available avatar drivers which are passed via the
* service container * service container
* @var array
*/ */
protected $avatar_drivers; protected $avatar_drivers;
/** /**
* Service container object * Service container object
* @var object
*/ */
protected $container; protected $container;