[ticket/15276] Add missing properties

PHPBB3-15276
This commit is contained in:
Rubén Calvo 2017-09-07 13:35:15 +02:00
parent 354dda5cc8
commit bb886667d2

View file

@ -21,11 +21,31 @@ use \phpbb\storage\exception\exception as storage_exception;
*/ */
class upload extends \phpbb\avatar\driver\driver class upload extends \phpbb\avatar\driver\driver
{ {
/**
* @var \phpbb\config\config
*/
protected $config;
/**
* @var string
*/
protected $phpbb_root_path;
/**
* @var string
*/
protected $php_ext;
/** /**
* @var \phpbb\storage\storage * @var \phpbb\storage\storage
*/ */
protected $storage; protected $storage;
/**
* @var \phpbb\path_helper
*/
protected $path_helper;
/** /**
* @var \phpbb\event\dispatcher_interface * @var \phpbb\event\dispatcher_interface
*/ */
@ -41,6 +61,11 @@ class upload extends \phpbb\avatar\driver\driver
*/ */
protected $php_ini; protected $php_ini;
/**
* @var \phpbb\cache\driver\driver_interface
*/
protected $cache;
/** /**
* Construct a driver object * Construct a driver object
* *