[feature/avatars] Remove the obsolete request argument for avatar drivers

This should have been removed earlier when the phpbb_request object was
dropped from the arguments to the avatar drivers.

PHPBB3-10018
This commit is contained in:
Marc Alexander 2013-01-15 22:07:01 +01:00
parent 7402add107
commit aeeb85e1cf

View file

@ -3,7 +3,6 @@ services:
class: phpbb_avatar_driver_gravatar class: phpbb_avatar_driver_gravatar
arguments: arguments:
- @config - @config
- @request
- %core.root_path% - %core.root_path%
- .%core.php_ext% - .%core.php_ext%
- @cache.driver - @cache.driver
@ -16,7 +15,6 @@ services:
class: phpbb_avatar_driver_local class: phpbb_avatar_driver_local
arguments: arguments:
- @config - @config
- @request
- %core.root_path% - %core.root_path%
- .%core.php_ext% - .%core.php_ext%
- @cache.driver - @cache.driver
@ -29,7 +27,6 @@ services:
class: phpbb_avatar_driver_remote class: phpbb_avatar_driver_remote
arguments: arguments:
- @config - @config
- @request
- %core.root_path% - %core.root_path%
- .%core.php_ext% - .%core.php_ext%
- @cache.driver - @cache.driver
@ -42,7 +39,6 @@ services:
class: phpbb_avatar_driver_upload class: phpbb_avatar_driver_upload
arguments: arguments:
- @config - @config
- @request
- %core.root_path% - %core.root_path%
- .%core.php_ext% - .%core.php_ext%
- @cache.driver - @cache.driver