@@ -46,7 +46,7 @@ |
||
| 46 | 46 | * DispatcherEvent constructor. |
| 47 | 47 | * |
| 48 | 48 | * @param string $event |
| 49 | - * @param $appID |
|
| 49 | + * @param string $appID |
|
| 50 | 50 | * @param \OCP\IGroup[] $groups |
| 51 | 51 | * @since 9.0.0 |
| 52 | 52 | */ |
@@ -271,8 +271,8 @@ |
||
| 271 | 271 | } |
| 272 | 272 | |
| 273 | 273 | /** |
| 274 | - * @param $username |
|
| 275 | - * @param $password |
|
| 274 | + * @param string $username |
|
| 275 | + * @param string $password |
|
| 276 | 276 | * @return bool |
| 277 | 277 | */ |
| 278 | 278 | public function auth($username, $password) { |
@@ -227,7 +227,7 @@ |
||
| 227 | 227 | } |
| 228 | 228 | |
| 229 | 229 | /** |
| 230 | - * @return array|null |
|
| 230 | + * @return string |
|
| 231 | 231 | */ |
| 232 | 232 | public function getLocalSystemAddressBook() { |
| 233 | 233 | if (is_null($this->localSystemAddressBook)) { |
@@ -21,7 +21,6 @@ |
||
| 21 | 21 | namespace OCA\DAV\Connector\Sabre; |
| 22 | 22 | |
| 23 | 23 | use Sabre\Xml\XmlSerializable; |
| 24 | -use Sabre\Xml\Element; |
|
| 25 | 24 | use Sabre\Xml\Writer; |
| 26 | 25 | |
| 27 | 26 | /** |
@@ -136,7 +136,7 @@ |
||
| 136 | 136 | * Returns the list of members for a group-principal |
| 137 | 137 | * |
| 138 | 138 | * @param string $principal |
| 139 | - * @return array |
|
| 139 | + * @return string[] |
|
| 140 | 140 | */ |
| 141 | 141 | function getGroupMemberSet($principal) { |
| 142 | 142 | // TODO: for now the group principal has only one member, the user itself |
@@ -100,7 +100,7 @@ discard block |
||
| 100 | 100 | |
| 101 | 101 | /** |
| 102 | 102 | * @param string $data |
| 103 | - * @return int |
|
| 103 | + * @return boolean |
|
| 104 | 104 | */ |
| 105 | 105 | public function stream_write($data) { |
| 106 | 106 | return false; |
@@ -206,7 +206,7 @@ discard block |
||
| 206 | 206 | } |
| 207 | 207 | |
| 208 | 208 | /** |
| 209 | - * @param $pos |
|
| 209 | + * @param integer $pos |
|
| 210 | 210 | * @return IFile | null |
| 211 | 211 | */ |
| 212 | 212 | private function getNodeForPosition($pos) { |
@@ -420,6 +420,9 @@ |
||
| 420 | 420 | return \OC_User::isAdminUser($uid); |
| 421 | 421 | } |
| 422 | 422 | |
| 423 | + /** |
|
| 424 | + * @return string |
|
| 425 | + */ |
|
| 423 | 426 | private function getUserId() { |
| 424 | 427 | return $this->getServer()->getSession()->get('user_id'); |
| 425 | 428 | } |
@@ -284,7 +284,7 @@ discard block |
||
| 284 | 284 | /** |
| 285 | 285 | * authenticate the api call |
| 286 | 286 | * @param array $action the action details as supplied to OC_API::register() |
| 287 | - * @return bool |
|
| 287 | + * @return boolean|string |
|
| 288 | 288 | */ |
| 289 | 289 | private static function isAuthorised($action) { |
| 290 | 290 | $level = $action['authlevel']; |
@@ -329,7 +329,7 @@ discard block |
||
| 329 | 329 | |
| 330 | 330 | /** |
| 331 | 331 | * http basic auth |
| 332 | - * @return string|false (username, or false on failure) |
|
| 332 | + * @return string|boolean (username, or false on failure) |
|
| 333 | 333 | */ |
| 334 | 334 | private static function loginUser() { |
| 335 | 335 | if(self::$isLoggedIn === true) { |
@@ -128,7 +128,6 @@ |
||
| 128 | 128 | /** |
| 129 | 129 | * Get $n re-shares from the database |
| 130 | 130 | * |
| 131 | - * @param int $n The max number of shares to fetch |
|
| 132 | 131 | * @return \Doctrine\DBAL\Driver\Statement |
| 133 | 132 | */ |
| 134 | 133 | private function getReShares() { |