diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2018-01-17 13:58:42 +0100 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2018-01-17 13:58:42 +0100 |
commit | 39f34603f20103a5fc44425175bf271e3fc91207 (patch) | |
tree | 8115c95f369f0fdce5c90072d50be0caf2728d15 /lib/private | |
parent | 6fdd6861118f55a9e740552b82382f55e9415eea (diff) | |
download | nextcloud-server-39f34603f20103a5fc44425175bf271e3fc91207.tar.gz nextcloud-server-39f34603f20103a5fc44425175bf271e3fc91207.zip |
add types to php doc
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/Collaboration/Collaborators/Search.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/private/Collaboration/Collaborators/Search.php b/lib/private/Collaboration/Collaborators/Search.php index 0e856eeb6f1..bb1bd6d1711 100644 --- a/lib/private/Collaboration/Collaborators/Search.php +++ b/lib/private/Collaboration/Collaborators/Search.php @@ -41,11 +41,11 @@ class Search implements ISearch { } /** - * @param $search + * @param string $search * @param array $shareTypes - * @param $lookup - * @param $limit - * @param $offset + * @param bool $lookup + * @param int|null $limit + * @param int|null $offset * @return array * @throws \OCP\AppFramework\QueryException */ |