mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-03 23:37:39 +02:00
[feature/avatars] Add missing docblocks to avatar manager
PHPBB3-10018
This commit is contained in:
@@ -20,9 +20,25 @@ if (!defined('IN_PHPBB'))
|
|||||||
*/
|
*/
|
||||||
class phpbb_avatar_manager
|
class phpbb_avatar_manager
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* phpBB configuration
|
||||||
|
*/
|
||||||
protected $config;
|
protected $config;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Array that contains a list of enabled drivers
|
||||||
|
*/
|
||||||
static protected $enabled_drivers = false;
|
static protected $enabled_drivers = false;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Array that contains all available avatar drivers which are passed via the
|
||||||
|
* service container
|
||||||
|
*/
|
||||||
protected $avatar_drivers;
|
protected $avatar_drivers;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Service container object
|
||||||
|
*/
|
||||||
protected $container;
|
protected $container;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user