diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-06-08 13:42:02 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-06-08 13:42:02 +0200 |
commit | a968b8409d153257d63cc78f71139303557f4617 (patch) | |
tree | 6b6cdf36c6df99f0f5ef1999814b2645a4edc719 /lib/private/repair.php | |
parent | f051b7381ba00d538dd5ad0b1ba5b016d4aa62b1 (diff) | |
parent | a9455be14a36013adead81de06e3799e6e7efb9b (diff) | |
download | nextcloud-server-a968b8409d153257d63cc78f71139303557f4617.tar.gz nextcloud-server-a968b8409d153257d63cc78f71139303557f4617.zip |
Merge pull request #16158 from owncloud/mountprovider-after-setup
Call newly registered mount providers after the filesystem is setup
Diffstat (limited to 'lib/private/repair.php')
-rw-r--r-- | lib/private/repair.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/repair.php b/lib/private/repair.php index c690fe4a8cd..43350995beb 100644 --- a/lib/private/repair.php +++ b/lib/private/repair.php @@ -142,7 +142,7 @@ class Repair extends BasicEmitter { * * Re-declared as public to allow invocation from within the closure above in php 5.3 */ - public function emit($scope, $method, $arguments = array()) { + public function emit($scope, $method, array $arguments = array()) { parent::emit($scope, $method, $arguments); } } |