[ticket/11930] Modify order of properties to fit constructor method

PHPBB3-11930
This commit is contained in:
Marc Alexander 2013-10-21 10:47:40 +02:00
parent d7bf50bc80
commit acbb1ed3ee

View file

@ -47,18 +47,18 @@ abstract class driver implements \phpbb\avatar\driver\driver_interface
*/ */
protected $php_ext; protected $php_ext;
/**
* Cache driver
* @var \phpbb\cache\driver\driver_interface
*/
protected $cache;
/** /**
* Path Helper * Path Helper
* @var \phpbb\path_helper * @var \phpbb\path_helper
*/ */
protected $path_helper; protected $path_helper;
/**
* Cache driver
* @var \phpbb\cache\driver\driver_interface
*/
protected $cache;
/** /**
* Array of allowed avatar image extensions * Array of allowed avatar image extensions
* Array is used for setting the allowed extensions in the fileupload class * Array is used for setting the allowed extensions in the fileupload class
@ -88,8 +88,8 @@ abstract class driver implements \phpbb\avatar\driver\driver_interface
$this->config = $config; $this->config = $config;
$this->phpbb_root_path = $phpbb_root_path; $this->phpbb_root_path = $phpbb_root_path;
$this->php_ext = $php_ext; $this->php_ext = $php_ext;
$this->cache = $cache;
$this->path_helper = $path_helper; $this->path_helper = $path_helper;
$this->cache = $cache;
} }
/** /**