@@ -159,7 +159,7 @@ |
||
| 159 | 159 | * Checks whether the given path is a part file |
| 160 | 160 | * |
| 161 | 161 | * @param string $path Path that may identify a .part file |
| 162 | - * @return string File path without .part extension |
|
| 162 | + * @return boolean File path without .part extension |
|
| 163 | 163 | * @note this is needed for reusing keys |
| 164 | 164 | */ |
| 165 | 165 | private function isPartFile($path) { |
@@ -176,7 +176,7 @@ |
||
| 176 | 176 | * Returns an associative array with all translations |
| 177 | 177 | * |
| 178 | 178 | * Called by \OC_L10N_String |
| 179 | - * @return array |
|
| 179 | + * @return string[] |
|
| 180 | 180 | */ |
| 181 | 181 | public function getTranslations() { |
| 182 | 182 | return $this->translations; |
@@ -331,7 +331,7 @@ |
||
| 331 | 331 | |
| 332 | 332 | /** |
| 333 | 333 | * http basic auth |
| 334 | - * @return string|false (username, or false on failure) |
|
| 334 | + * @return string (username, or false on failure) |
|
| 335 | 335 | */ |
| 336 | 336 | private static function loginUser() { |
| 337 | 337 | if(self::$isLoggedIn === true) { |
@@ -88,7 +88,7 @@ |
||
| 88 | 88 | * send a message to the client |
| 89 | 89 | * |
| 90 | 90 | * @param string $type |
| 91 | - * @param mixed $data |
|
| 91 | + * @param string $data |
|
| 92 | 92 | * |
| 93 | 93 | * @throws \BadMethodCallException |
| 94 | 94 | * if only one parameter is given, a typeless message will be send with that parameter as data |
@@ -155,7 +155,7 @@ |
||
| 155 | 155 | * Set a value in the cache if it's not already stored |
| 156 | 156 | * |
| 157 | 157 | * @param string $key |
| 158 | - * @param mixed $value |
|
| 158 | + * @param integer $value |
|
| 159 | 159 | * @param int $ttl Time To Live in seconds. Defaults to 60*60*24 |
| 160 | 160 | * @return bool |
| 161 | 161 | * @throws \Exception |
@@ -139,7 +139,7 @@ discard block |
||
| 139 | 139 | * Returns expensive repair steps to be run on the |
| 140 | 140 | * command line with a special option. |
| 141 | 141 | * |
| 142 | - * @return IRepairStep[] |
|
| 142 | + * @return OldGroupMembershipShares[] |
|
| 143 | 143 | */ |
| 144 | 144 | public static function getExpensiveRepairSteps() { |
| 145 | 145 | return [ |
@@ -216,7 +216,6 @@ discard block |
||
| 216 | 216 | } |
| 217 | 217 | |
| 218 | 218 | /** |
| 219 | - * @param int $max |
|
| 220 | 219 | */ |
| 221 | 220 | public function finishProgress() { |
| 222 | 221 | // for now just emit as we did in the past |
@@ -176,7 +176,7 @@ |
||
| 176 | 176 | |
| 177 | 177 | /** |
| 178 | 178 | * @param mixed $offset |
| 179 | - * @return mixed |
|
| 179 | + * @return string|null |
|
| 180 | 180 | */ |
| 181 | 181 | public function offsetGet($offset) { |
| 182 | 182 | return $this->get($offset); |
@@ -742,11 +742,19 @@ discard block |
||
| 742 | 742 | } |
| 743 | 743 | |
| 744 | 744 | // case-insensitive array_search |
| 745 | + |
|
| 746 | + /** |
|
| 747 | + * @param string $needle |
|
| 748 | + */ |
|
| 745 | 749 | protected function array_searchi($needle, $haystack, $mem='getName') { |
| 746 | 750 | if(!is_array($haystack)) { |
| 747 | 751 | return false; |
| 748 | 752 | } |
| 749 | 753 | return array_search(strtolower($needle), array_map( |
| 754 | + |
|
| 755 | + /** |
|
| 756 | + * @param string $tag |
|
| 757 | + */ |
|
| 750 | 758 | function($tag) use($mem) { |
| 751 | 759 | return strtolower(call_user_func(array($tag, $mem))); |
| 752 | 760 | }, $haystack) |
@@ -771,7 +779,7 @@ discard block |
||
| 771 | 779 | * Get a tag by its name. |
| 772 | 780 | * |
| 773 | 781 | * @param string $name The tag name. |
| 774 | - * @return integer|bool The tag object's offset within the $this->tags |
|
| 782 | + * @return \OCP\AppFramework\Db\Entity The tag object's offset within the $this->tags |
|
| 775 | 783 | * array or false if it doesn't exist. |
| 776 | 784 | */ |
| 777 | 785 | private function getTagByName($name) { |
@@ -782,7 +790,7 @@ discard block |
||
| 782 | 790 | * Get a tag by its ID. |
| 783 | 791 | * |
| 784 | 792 | * @param string $id The tag ID to look for. |
| 785 | - * @return integer|bool The tag object's offset within the $this->tags |
|
| 793 | + * @return \OCP\AppFramework\Db\Entity The tag object's offset within the $this->tags |
|
| 786 | 794 | * array or false if it doesn't exist. |
| 787 | 795 | */ |
| 788 | 796 | private function getTagById($id) { |
@@ -103,7 +103,7 @@ |
||
| 103 | 103 | /** |
| 104 | 104 | * Appends a variable |
| 105 | 105 | * @param string $key key |
| 106 | - * @param mixed $value value |
|
| 106 | + * @param string $value value |
|
| 107 | 107 | * @return boolean|null |
| 108 | 108 | * |
| 109 | 109 | * This function assigns a variable in an array context. If the key already |