aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/avatar
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2013-10-21 10:20:12 +0200
committerMarc Alexander <admin@m-a-styles.de>2013-10-21 10:20:12 +0200
commitd7bf50bc8073dbfe52c686066fcdd156550ab7f0 (patch)
tree6298cdbb9e3df3e7f8bae9ea0d73f5e8052f0926 /phpBB/phpbb/avatar
parent3f0ce78a25e433287e36bb92ff2c531e5a5b4743 (diff)
downloadforums-d7bf50bc8073dbfe52c686066fcdd156550ab7f0.tar
forums-d7bf50bc8073dbfe52c686066fcdd156550ab7f0.tar.gz
forums-d7bf50bc8073dbfe52c686066fcdd156550ab7f0.tar.bz2
forums-d7bf50bc8073dbfe52c686066fcdd156550ab7f0.tar.xz
forums-d7bf50bc8073dbfe52c686066fcdd156550ab7f0.zip
[ticket/11930] Move path_helper in front of optional cache argument
Optional method arguments should be after any mandatory ones. PHPBB3-11930
Diffstat (limited to 'phpBB/phpbb/avatar')
-rw-r--r--phpBB/phpbb/avatar/driver/driver.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/avatar/driver/driver.php b/phpBB/phpbb/avatar/driver/driver.php
index 95585ab13f..d682d7d114 100644
--- a/phpBB/phpbb/avatar/driver/driver.php
+++ b/phpBB/phpbb/avatar/driver/driver.php
@@ -83,7 +83,7 @@ abstract class driver implements \phpbb\avatar\driver\driver_interface
* @param string $php_ext PHP file extension
* @param \phpbb\cache\driver\driver_interface $cache Cache driver
*/
- public function __construct(\phpbb\config\config $config, $phpbb_root_path, $php_ext, \phpbb\cache\driver\driver_interface $cache = null, \phpbb\path_helper $path_helper)
+ public function __construct(\phpbb\config\config $config, $phpbb_root_path, $php_ext, \phpbb\path_helper $path_helper, \phpbb\cache\driver\driver_interface $cache = null)
{
$this->config = $config;
$this->phpbb_root_path = $phpbb_root_path;