mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[feature/avatars] Add missing docblocks to avatar manager
PHPBB3-10018
This commit is contained in:
parent
a342e47038
commit
111e02395c
1 changed files with 16 additions and 0 deletions
|
@ -20,9 +20,25 @@ if (!defined('IN_PHPBB'))
|
|||
*/
|
||||
class phpbb_avatar_manager
|
||||
{
|
||||
/**
|
||||
* phpBB configuration
|
||||
*/
|
||||
protected $config;
|
||||
|
||||
/**
|
||||
* Array that contains a list of enabled drivers
|
||||
*/
|
||||
static protected $enabled_drivers = false;
|
||||
|
||||
/**
|
||||
* Array that contains all available avatar drivers which are passed via the
|
||||
* service container
|
||||
*/
|
||||
protected $avatar_drivers;
|
||||
|
||||
/**
|
||||
* Service container object
|
||||
*/
|
||||
protected $container;
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue