diff options
author | Tristan Darricau <github@nicofuma.fr> | 2016-09-01 16:12:04 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2016-12-03 16:37:36 +0100 |
commit | 57915a8aaa842064d42fee419c9e0eaf7288140a (patch) | |
tree | cf303c8a91d80e1fc593b17e23e291fa68ff75eb /phpBB/config | |
parent | ab58bb8744b98478437cefd7af362aea1274621e (diff) | |
download | forums-57915a8aaa842064d42fee419c9e0eaf7288140a.tar forums-57915a8aaa842064d42fee419c9e0eaf7288140a.tar.gz forums-57915a8aaa842064d42fee419c9e0eaf7288140a.tar.bz2 forums-57915a8aaa842064d42fee419c9e0eaf7288140a.tar.xz forums-57915a8aaa842064d42fee419c9e0eaf7288140a.zip |
[ticket/12610] Correctly handle empty cache
PHPBB3-12610
Diffstat (limited to 'phpBB/config')
-rw-r--r-- | phpBB/config/default/container/services_console.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/config/default/container/services_console.yml b/phpBB/config/default/container/services_console.yml index c3db4c29a5..4420b6e345 100644 --- a/phpBB/config/default/container/services_console.yml +++ b/phpBB/config/default/container/services_console.yml @@ -223,9 +223,9 @@ services: console.command.update.check: class: phpbb\console\command\update\check arguments: - - @user - - @config - - @service_container + - '@user' + - '@config' + - '@service_container' tags: - { name: console.command } |