aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarl Schwan <carl@carlschwan.eu>2022-10-16 23:29:38 +0200
committerCarl Schwan <carl@carlschwan.eu>2022-10-16 23:29:38 +0200
commit386ef04e425071c67fd4ababed5847e1345b4493 (patch)
tree4bad3a1ef6145c450940962d37cf63b98a125b8a
parent7524b11617f41886572a2806de12a3d470ace90f (diff)
downloadnextcloud-server-386ef04e425071c67fd4ababed5847e1345b4493.tar.gz
nextcloud-server-386ef04e425071c67fd4ababed5847e1345b4493.zip
Fix too many arguments in LegacyDependencyCheckPolyfill
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
-rw-r--r--apps/files_external/lib/Lib/LegacyDependencyCheckPolyfill.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/lib/Lib/LegacyDependencyCheckPolyfill.php b/apps/files_external/lib/Lib/LegacyDependencyCheckPolyfill.php
index 732413c78cd..c2562e5c64e 100644
--- a/apps/files_external/lib/Lib/LegacyDependencyCheckPolyfill.php
+++ b/apps/files_external/lib/Lib/LegacyDependencyCheckPolyfill.php
@@ -54,7 +54,7 @@ trait LegacyDependencyCheckPolyfill {
$module = $key;
$message = $value;
}
- $value = new MissingDependency($module, $this);
+ $value = new MissingDependency($module);
$value->setMessage($message);
}
$ret[] = $value;