diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-10-16 23:29:38 +0200 |
---|---|---|
committer | Carl Schwan <carl@carlschwan.eu> | 2022-10-16 23:29:38 +0200 |
commit | 386ef04e425071c67fd4ababed5847e1345b4493 (patch) | |
tree | 4bad3a1ef6145c450940962d37cf63b98a125b8a | |
parent | 7524b11617f41886572a2806de12a3d470ace90f (diff) | |
download | nextcloud-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.php | 2 |
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; |