From 0de4843b73ee4779c7e455dd80c36a6b506e0024 Mon Sep 17 00:00:00 2001 From: provokateurin Date: Tue, 8 Oct 2024 15:13:16 +0200 Subject: refactor(Storage): Align all Storage constructors Signed-off-by: provokateurin --- lib/private/Files/Storage/CommonTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/private/Files/Storage/CommonTest.php') diff --git a/lib/private/Files/Storage/CommonTest.php b/lib/private/Files/Storage/CommonTest.php index bf61dfaec86..da796130899 100644 --- a/lib/private/Files/Storage/CommonTest.php +++ b/lib/private/Files/Storage/CommonTest.php @@ -14,8 +14,8 @@ class CommonTest extends \OC\Files\Storage\Common { */ private $storage; - public function __construct($params) { - $this->storage = new \OC\Files\Storage\Local($params); + public function __construct(array $parameters) { + $this->storage = new \OC\Files\Storage\Local($parameters); } public function getId(): string { -- cgit v1.2.3