@@ -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([$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) { |
@@ -170,7 +170,7 @@ |
||
170 | 170 | /** |
171 | 171 | * Returns whether the given mount point should be scanned |
172 | 172 | * |
173 | - * @param $mount mount point |
|
173 | + * @param \OC\Files\Mount\MountPoint|null $mount mount point |
|
174 | 174 | * @return bool true to scan, false to skip |
175 | 175 | */ |
176 | 176 | private function shouldScan($mount) { |
@@ -189,10 +189,10 @@ |
||
189 | 189 | * inform recipient about public link share |
190 | 190 | * |
191 | 191 | * @param string $recipient recipient email address |
192 | - * @param string $filename the shared file |
|
193 | - * @param string $link the public link |
|
194 | 192 | * @param array $options allows ['cc'] and ['bcc'] recipients |
195 | - * @param int $expiration expiration date (timestamp) |
|
193 | + * @param string $subject |
|
194 | + * @param boolean|string $htmlBody |
|
195 | + * @param boolean|string $textBody |
|
196 | 196 | * @return string[] $result of failed recipients |
197 | 197 | */ |
198 | 198 | public function sendLinkShareMailFromBody($recipient, $subject, $htmlBody, $textBody, $options = []) { |