diff options
author | Marc Alexander <admin@m-a-styles.de> | 2013-10-21 10:20:12 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2013-10-21 10:20:12 +0200 |
commit | d7bf50bc8073dbfe52c686066fcdd156550ab7f0 (patch) | |
tree | 6298cdbb9e3df3e7f8bae9ea0d73f5e8052f0926 /phpBB/config/avatars.yml | |
parent | 3f0ce78a25e433287e36bb92ff2c531e5a5b4743 (diff) | |
download | forums-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/config/avatars.yml')
-rw-r--r-- | phpBB/config/avatars.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/config/avatars.yml b/phpBB/config/avatars.yml index 5dae067642..d22a5db2ae 100644 --- a/phpBB/config/avatars.yml +++ b/phpBB/config/avatars.yml @@ -5,8 +5,8 @@ services: - @config - %core.root_path% - %core.php_ext% - - @cache.driver - @path_helper + - @cache.driver calls: - [set_name, [avatar.driver.gravatar]] tags: @@ -18,8 +18,8 @@ services: - @config - %core.root_path% - %core.php_ext% - - @cache.driver - @path_helper + - @cache.driver calls: - [set_name, [avatar.driver.local]] tags: @@ -31,8 +31,8 @@ services: - @config - %core.root_path% - %core.php_ext% - - @cache.driver - @path_helper + - @cache.driver calls: - [set_name, [avatar.driver.remote]] tags: @@ -44,8 +44,8 @@ services: - @config - %core.root_path% - %core.php_ext% - - @cache.driver - @path_helper + - @cache.driver calls: - [set_name, [avatar.driver.upload]] tags: |