From 171b56b0ac73c99448b942448e6d6c92a2912b3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Calvo?= Date: Wed, 16 May 2018 23:54:42 +0200 Subject: [PATCH] [ticket/15342] Add missing services dependencies PHPBB3-15342 --- phpBB/config/default/container/services_storage.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/phpBB/config/default/container/services_storage.yml b/phpBB/config/default/container/services_storage.yml index 4223bdb2bf..b80a394ecc 100644 --- a/phpBB/config/default/container/services_storage.yml +++ b/phpBB/config/default/container/services_storage.yml @@ -4,8 +4,10 @@ services: storage.attachment: class: phpbb\storage\storage arguments: + - '@dbal.conn' - '@storage.adapter.factory' - 'attachment' + - '%tables.storage%' tags: - { name: storage } @@ -25,6 +27,7 @@ services: - '@dbal.conn' - '@storage.adapter.factory' - 'backup' + - '%tables.storage%' tags: - { name: storage }