aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/Files/Storage/StorageFactoryTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/Files/Storage/StorageFactoryTest.php')
-rw-r--r--tests/lib/Files/Storage/StorageFactoryTest.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/lib/Files/Storage/StorageFactoryTest.php b/tests/lib/Files/Storage/StorageFactoryTest.php
index d1e8d927dc9..83e8a7bf6eb 100644
--- a/tests/lib/Files/Storage/StorageFactoryTest.php
+++ b/tests/lib/Files/Storage/StorageFactoryTest.php
@@ -16,10 +16,10 @@ use Test\TestCase;
class DummyWrapper extends Wrapper {
public $data;
- public function __construct($arguments) {
- parent::__construct($arguments);
- if (isset($arguments['data'])) {
- $this->data = $arguments['data'];
+ public function __construct(array $parameters) {
+ parent::__construct($parameters);
+ if (isset($parameters['data'])) {
+ $this->data = $parameters['data'];
}
}
}