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

[feature/avatars] Add missing docblocks to avatar manager

PHPBB3-10018
This commit is contained in:
Marc Alexander 2013-01-05 20:17:53 +01:00
parent a342e47038
commit 111e02395c

View File

@ -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;
/**