mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-02 14:57:37 +02:00
[ticket/15276] Add missing properties
PHPBB3-15276
This commit is contained in:
@@ -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
|
||||||
*
|
*
|
||||||
|
Reference in New Issue
Block a user