diff options
author | Robin Appelman <icewind@owncloud.com> | 2015-08-19 16:26:33 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2015-08-19 16:26:33 +0200 |
commit | 273c776eb72641c837cb78955fd13d4de7246de4 (patch) | |
tree | 7ce5295bea2daf896c078ae6873e95ff39fee6e4 /apps/files_external | |
parent | 5fd36d017ecdbce61dcf1c67ae04c8c0be81a4bf (diff) | |
download | nextcloud-server-273c776eb72641c837cb78955fd13d4de7246de4.tar.gz nextcloud-server-273c776eb72641c837cb78955fd13d4de7246de4.zip |
add missing return statements in getSystem/getPersonalMountPoints
Diffstat (limited to 'apps/files_external')
-rw-r--r-- | apps/files_external/lib/config.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index 91c33ef10a5..390f51bfa71 100644 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -165,6 +165,8 @@ class OC_Mount_Config { foreach ($service->getAllStorages() as $storage) { $mountPoints[] = self::prepareMountPointEntry($storage, false); } + + return $mountPoints; } /** @@ -181,6 +183,8 @@ class OC_Mount_Config { foreach ($service->getAllStorages() as $storage) { $mountPoints[] = self::prepareMountPointEntry($storage, true); } + + return $mountPoints; } /** |