diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2018-02-21 13:00:41 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2018-02-21 13:00:41 +0100 |
commit | 4a41e0cc42181aefa7ee860da3945faefda3c691 (patch) | |
tree | 1bda67877bc082fb85d7280ec67d64db4566e1a8 /lib/private/App/AppManager.php | |
parent | 09857e5a95b0a200adb2955ace3b69be2603d3d6 (diff) | |
download | nextcloud-server-4a41e0cc42181aefa7ee860da3945faefda3c691.tar.gz nextcloud-server-4a41e0cc42181aefa7ee860da3945faefda3c691.zip |
getIncompatibleApps needs a string not an array
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'lib/private/App/AppManager.php')
-rw-r--r-- | lib/private/App/AppManager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/App/AppManager.php b/lib/private/App/AppManager.php index 690dcfe5639..4bf15c23fab 100644 --- a/lib/private/App/AppManager.php +++ b/lib/private/App/AppManager.php @@ -397,7 +397,7 @@ class AppManager implements IAppManager { * * @internal */ - public function getIncompatibleApps($version) { + public function getIncompatibleApps(string $version): array { $apps = $this->getInstalledApps(); $incompatibleApps = array(); foreach ($apps as $appId) { |