@@ -114,8 +114,8 @@ |
||
114 | 114 | } |
115 | 115 | |
116 | 116 | /** |
117 | - * @param $appName |
|
118 | - * @param $fileName |
|
117 | + * @param string $appName |
|
118 | + * @param string $fileName |
|
119 | 119 | * @return ISimpleFile |
120 | 120 | */ |
121 | 121 | public function getCachedCSS($appName, $fileName) { |
@@ -98,6 +98,9 @@ |
||
98 | 98 | throw new Forbidden('Permission denied to delete this folder'); |
99 | 99 | } |
100 | 100 | |
101 | + /** |
|
102 | + * @return string |
|
103 | + */ |
|
101 | 104 | public function getName() { |
102 | 105 | list(,$name) = Uri\split($this->principalInfo['uri']); |
103 | 106 | return $name; |
@@ -97,6 +97,9 @@ |
||
97 | 97 | } |
98 | 98 | } |
99 | 99 | |
100 | + /** |
|
101 | + * @param string $pattern |
|
102 | + */ |
|
100 | 103 | protected function getInvalidObjects($pattern) { |
101 | 104 | $query = $this->db->getQueryBuilder(); |
102 | 105 | $query->select(['calendarid', 'uri']) |
@@ -79,7 +79,7 @@ |
||
79 | 79 | * the next element. |
80 | 80 | * |
81 | 81 | * @param Reader $reader |
82 | - * @return mixed |
|
82 | + * @return CalendarSearchReport |
|
83 | 83 | */ |
84 | 84 | static function xmlDeserialize(Reader $reader) { |
85 | 85 | $elems = $reader->parseInnerTree([ |
@@ -1100,6 +1100,9 @@ |
||
1100 | 1100 | return $share; |
1101 | 1101 | } |
1102 | 1102 | |
1103 | + /** |
|
1104 | + * @param \OCP\Share\IShare $share |
|
1105 | + */ |
|
1103 | 1106 | protected function checkExpireDate($share) { |
1104 | 1107 | if ($share->getExpirationDate() !== null && |
1105 | 1108 | $share->getExpirationDate() <= new \DateTime()) { |
@@ -163,7 +163,6 @@ discard block |
||
163 | 163 | /** |
164 | 164 | * @param string $url |
165 | 165 | * @param string $userName |
166 | - * @param string $addressBookUrl |
|
167 | 166 | * @param string $sharedSecret |
168 | 167 | * @return Client |
169 | 168 | */ |
@@ -301,7 +300,7 @@ discard block |
||
301 | 300 | } |
302 | 301 | |
303 | 302 | /** |
304 | - * @return array|null |
|
303 | + * @return string |
|
305 | 304 | */ |
306 | 305 | public function getLocalSystemAddressBook() { |
307 | 306 | if (is_null($this->localSystemAddressBook)) { |
@@ -37,7 +37,7 @@ |
||
37 | 37 | private $parameters = []; |
38 | 38 | |
39 | 39 | /** |
40 | - * @param object $object an object or classname |
|
40 | + * @param \OCP\AppFramework\Controller $object an object or classname |
|
41 | 41 | * @param string $method the method which we want to inspect |
42 | 42 | */ |
43 | 43 | public function reflect($object, $method){ |
@@ -329,7 +329,7 @@ discard block |
||
329 | 329 | * @param IUser $user |
330 | 330 | * @param array $loginDetails |
331 | 331 | * @param bool $regenerateSessionId |
332 | - * @return true returns true if login successful or an exception otherwise |
|
332 | + * @return boolean returns true if login successful or an exception otherwise |
|
333 | 333 | * @throws LoginException |
334 | 334 | */ |
335 | 335 | public function completeLogin(IUser $user, array $loginDetails, $regenerateSessionId = true) { |
@@ -377,7 +377,7 @@ discard block |
||
377 | 377 | * @param OC\Security\Bruteforce\Throttler $throttler |
378 | 378 | * @throws LoginException |
379 | 379 | * @throws PasswordLoginForbiddenException |
380 | - * @return boolean |
|
380 | + * @return boolean|null |
|
381 | 381 | */ |
382 | 382 | public function logClientIn($user, |
383 | 383 | $password, |
@@ -431,6 +431,9 @@ discard block |
||
431 | 431 | return $this->config->getSystemValue('token_auth_enforced', false); |
432 | 432 | } |
433 | 433 | |
434 | + /** |
|
435 | + * @param string $username |
|
436 | + */ |
|
434 | 437 | protected function isTwoFactorEnforced($username) { |
435 | 438 | Util::emitHook( |
436 | 439 | '\OCA\Files_Sharing\API\Server2Server', |
@@ -276,10 +276,10 @@ discard block |
||
276 | 276 | * publish activity if a file/folder was shared by mail |
277 | 277 | * |
278 | 278 | * @param $subject |
279 | - * @param $parameters |
|
280 | - * @param $affectedUser |
|
279 | + * @param string[] $parameters |
|
280 | + * @param string $affectedUser |
|
281 | 281 | * @param $fileId |
282 | - * @param $filePath |
|
282 | + * @param string $filePath |
|
283 | 283 | */ |
284 | 284 | protected function publishActivity($subject, $parameters, $affectedUser, $fileId, $filePath) { |
285 | 285 | $event = $this->activityManager->generateEvent(); |
@@ -557,6 +557,7 @@ discard block |
||
557 | 557 | * @param string $uidOwner |
558 | 558 | * @param int $permissions |
559 | 559 | * @param string $token |
560 | + * @param string $password |
|
560 | 561 | * @return int |
561 | 562 | */ |
562 | 563 | protected function addShareToDB($itemSource, $itemType, $shareWith, $sharedBy, $uidOwner, $permissions, $token, $password) { |
@@ -950,7 +951,7 @@ discard block |
||
950 | 951 | /** |
951 | 952 | * get database row of a give share |
952 | 953 | * |
953 | - * @param $id |
|
954 | + * @param integer $id |
|
954 | 955 | * @return array |
955 | 956 | * @throws ShareNotFound |
956 | 957 | */ |