diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-05-08 09:30:50 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-05-08 09:30:50 +0200 |
commit | 390549c286d974426299c197d5764d6b7fb56335 (patch) | |
tree | 4e6d800031b7d941e580c0a126026e05fec25c42 /apps/files_sharing/lib/helper.php | |
parent | 4da6645a943746b8f2b8a2671962e50452a8436d (diff) | |
parent | 9f88141bcd52517b676de7603499bbb606180438 (diff) | |
download | nextcloud-server-390549c286d974426299c197d5764d6b7fb56335.tar.gz nextcloud-server-390549c286d974426299c197d5764d6b7fb56335.zip |
Merge pull request #8221 from owncloud/type-hinting-sharing
Type hinting fixes for sharing
Diffstat (limited to 'apps/files_sharing/lib/helper.php')
-rw-r--r-- | apps/files_sharing/lib/helper.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/lib/helper.php b/apps/files_sharing/lib/helper.php index 7a5b859826c..dd4056b48f1 100644 --- a/apps/files_sharing/lib/helper.php +++ b/apps/files_sharing/lib/helper.php @@ -79,7 +79,7 @@ class Helper { * @param array $linkItem link item array * @param string $password optional password * - * @return true if authorized, false otherwise + * @return boolean true if authorized, false otherwise */ public static function authenticate($linkItem, $password) { if ($password !== null) { |