diff options
author | Marc Alexander <admin@m-a-styles.de> | 2013-10-21 10:47:40 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2013-10-21 10:47:40 +0200 |
commit | acbb1ed3ee4c01f4379dfdefbec40f59e427c95f (patch) | |
tree | 37bd47dae17c280f2fbd9873591ed1321c50d627 /phpBB/phpbb/avatar | |
parent | d7bf50bc8073dbfe52c686066fcdd156550ab7f0 (diff) | |
download | forums-acbb1ed3ee4c01f4379dfdefbec40f59e427c95f.tar forums-acbb1ed3ee4c01f4379dfdefbec40f59e427c95f.tar.gz forums-acbb1ed3ee4c01f4379dfdefbec40f59e427c95f.tar.bz2 forums-acbb1ed3ee4c01f4379dfdefbec40f59e427c95f.tar.xz forums-acbb1ed3ee4c01f4379dfdefbec40f59e427c95f.zip |
[ticket/11930] Modify order of properties to fit constructor method
PHPBB3-11930
Diffstat (limited to 'phpBB/phpbb/avatar')
-rw-r--r-- | phpBB/phpbb/avatar/driver/driver.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/phpBB/phpbb/avatar/driver/driver.php b/phpBB/phpbb/avatar/driver/driver.php index d682d7d114..68c30d36a5 100644 --- a/phpBB/phpbb/avatar/driver/driver.php +++ b/phpBB/phpbb/avatar/driver/driver.php @@ -48,18 +48,18 @@ abstract class driver implements \phpbb\avatar\driver\driver_interface protected $php_ext; /** - * Cache driver - * @var \phpbb\cache\driver\driver_interface - */ - protected $cache; - - /** * Path Helper * @var \phpbb\path_helper */ protected $path_helper; /** + * Cache driver + * @var \phpbb\cache\driver\driver_interface + */ + protected $cache; + + /** * Array of allowed avatar image extensions * Array is used for setting the allowed extensions in the fileupload class * and as a base for a regex of allowed extensions, which will be formed by @@ -88,8 +88,8 @@ abstract class driver implements \phpbb\avatar\driver\driver_interface $this->config = $config; $this->phpbb_root_path = $phpbb_root_path; $this->php_ext = $php_ext; - $this->cache = $cache; $this->path_helper = $path_helper; + $this->cache = $cache; } /** |