mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
[ticket/15276] Add missing properties
PHPBB3-15276
This commit is contained in:
parent
354dda5cc8
commit
bb886667d2
1 changed files with 25 additions and 0 deletions
|
@ -21,11 +21,31 @@ use \phpbb\storage\exception\exception as storage_exception;
|
|||
*/
|
||||
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
|
||||
*/
|
||||
protected $storage;
|
||||
|
||||
/**
|
||||
* @var \phpbb\path_helper
|
||||
*/
|
||||
protected $path_helper;
|
||||
|
||||
/**
|
||||
* @var \phpbb\event\dispatcher_interface
|
||||
*/
|
||||
|
@ -41,6 +61,11 @@ class upload extends \phpbb\avatar\driver\driver
|
|||
*/
|
||||
protected $php_ini;
|
||||
|
||||
/**
|
||||
* @var \phpbb\cache\driver\driver_interface
|
||||
*/
|
||||
protected $cache;
|
||||
|
||||
/**
|
||||
* Construct a driver object
|
||||
*
|
||||
|
|
Loading…
Add table
Reference in a new issue