mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
[feature/avatars] Add missing @var to docblocks in avatar manager
PHPBB3-10018
This commit is contained in:
parent
7ea0376958
commit
7402add107
1 changed files with 4 additions and 0 deletions
|
@ -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;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue