@@ -741,11 +741,19 @@ discard block |
||
741 | 741 | } |
742 | 742 | |
743 | 743 | // case-insensitive array_search |
744 | + |
|
745 | + /** |
|
746 | + * @param string $needle |
|
747 | + */ |
|
744 | 748 | protected function array_searchi($needle, $haystack, $mem='getName') { |
745 | 749 | if (!\is_array($haystack)) { |
746 | 750 | return false; |
747 | 751 | } |
748 | 752 | return \array_search(\strtolower($needle), \array_map( |
753 | + |
|
754 | + /** |
|
755 | + * @param string $tag |
|
756 | + */ |
|
749 | 757 | function ($tag) use ($mem) { |
750 | 758 | return \strtolower(\call_user_func([$tag, $mem])); |
751 | 759 | }, $haystack) |
@@ -770,7 +778,7 @@ discard block |
||
770 | 778 | * Get a tag by its name. |
771 | 779 | * |
772 | 780 | * @param string $name The tag name. |
773 | - * @return integer|bool The tag object's offset within the $this->tags |
|
781 | + * @return \OCP\AppFramework\Db\Entity The tag object's offset within the $this->tags |
|
774 | 782 | * array or false if it doesn't exist. |
775 | 783 | */ |
776 | 784 | private function getTagByName($name) { |
@@ -781,7 +789,7 @@ discard block |
||
781 | 789 | * Get a tag by its ID. |
782 | 790 | * |
783 | 791 | * @param string $id The tag ID to look for. |
784 | - * @return integer|bool The tag object's offset within the $this->tags |
|
792 | + * @return \OCP\AppFramework\Db\Entity The tag object's offset within the $this->tags |
|
785 | 793 | * array or false if it doesn't exist. |
786 | 794 | */ |
787 | 795 | private function getTagById($id) { |
@@ -67,7 +67,7 @@ |
||
67 | 67 | /** |
68 | 68 | * Search for files by mimetype |
69 | 69 | * @param string $mimetype |
70 | - * @return array |
|
70 | + * @return \OC\Files\FileInfo[] |
|
71 | 71 | * @since 6.0.0 |
72 | 72 | */ |
73 | 73 | public static function searchByMime($mimetype) { |
@@ -32,18 +32,21 @@ discard block |
||
32 | 32 | /** |
33 | 33 | * @param string $message |
34 | 34 | * @since 9.1.0 |
35 | + * @return void |
|
35 | 36 | */ |
36 | 37 | public function info($message); |
37 | 38 | |
38 | 39 | /** |
39 | 40 | * @param string $message |
40 | 41 | * @since 9.1.0 |
42 | + * @return void |
|
41 | 43 | */ |
42 | 44 | public function warning($message); |
43 | 45 | |
44 | 46 | /** |
45 | 47 | * @param int $max |
46 | 48 | * @since 9.1.0 |
49 | + * @return void |
|
47 | 50 | */ |
48 | 51 | public function startProgress($max = 0); |
49 | 52 | |
@@ -51,12 +54,13 @@ discard block |
||
51 | 54 | * @param int $step |
52 | 55 | * @param string $description |
53 | 56 | * @since 9.1.0 |
57 | + * @return void |
|
54 | 58 | */ |
55 | 59 | public function advance($step = 1, $description = ''); |
56 | 60 | |
57 | 61 | /** |
58 | - * @param int $max |
|
59 | 62 | * @since 9.1.0 |
63 | + * @return void |
|
60 | 64 | */ |
61 | 65 | public function finishProgress(); |
62 | 66 | } |
@@ -67,6 +67,9 @@ |
||
67 | 67 | } |
68 | 68 | } |
69 | 69 | |
70 | + /** |
|
71 | + * @param string|boolean $username |
|
72 | + */ |
|
70 | 73 | private static function sendNotificationMail($username) { |
71 | 74 | $userObject = \OC::$server->getUserManager()->get($username); |
72 | 75 | $email = $userObject->getEMailAddress(); |
@@ -245,7 +245,7 @@ |
||
245 | 245 | } |
246 | 246 | |
247 | 247 | /** |
248 | - * @return array|null |
|
248 | + * @return string |
|
249 | 249 | */ |
250 | 250 | public function getLocalSystemAddressBook() { |
251 | 251 | if ($this->localSystemAddressBook === null) { |
@@ -33,7 +33,6 @@ |
||
33 | 33 | use OCP\Share\IShare; |
34 | 34 | use Symfony\Component\EventDispatcher\GenericEvent; |
35 | 35 | use OCA\Files_Sharing\Service\NotificationPublisher; |
36 | -use OCP\Share\Exceptions\ShareNotFound; |
|
37 | 36 | |
38 | 37 | class Hooks { |
39 | 38 | /** |
@@ -138,6 +138,10 @@ |
||
138 | 138 | ); |
139 | 139 | } |
140 | 140 | |
141 | + /** |
|
142 | + * @param IShare[] $shares |
|
143 | + * @param string $fileId |
|
144 | + */ |
|
141 | 145 | private function filterSharesByFileId($shares, $fileId) { |
142 | 146 | return \array_filter($shares, function (IShare $share) use ($fileId) { |
143 | 147 | return \strval($share->getNodeId()) === \strval($fileId); |
@@ -39,12 +39,9 @@ |
||
39 | 39 | use OC\Settings\Controller\AuthSettingsController; |
40 | 40 | use OC\Settings\Controller\CertificateController; |
41 | 41 | use OC\Settings\Controller\CheckSetupController; |
42 | -use OC\Settings\Controller\GroupsController; |
|
43 | 42 | use OC\Settings\Controller\LegalSettingsController; |
44 | 43 | use OC\Settings\Controller\LogSettingsController; |
45 | 44 | use OC\Settings\Controller\MailSettingsController; |
46 | -use OC\Settings\Controller\UsersController; |
|
47 | -use OC\Settings\Middleware\SubadminMiddleware; |
|
48 | 45 | use OCP\AppFramework\App; |
49 | 46 | use OCP\IContainer; |
50 | 47 | use OCP\Util; |
@@ -511,7 +511,7 @@ discard block |
||
511 | 511 | /** |
512 | 512 | * @param \OCP\Files\File|\OCP\Files\Folder $node |
513 | 513 | * @param boolean $includeTags include tags in response |
514 | - * @param int|null $stateFilter state filter or empty for all, defaults to 0 (accepted) |
|
514 | + * @param integer $stateFilter state filter or empty for all, defaults to 0 (accepted) |
|
515 | 515 | * @return \OC\OCS\Result |
516 | 516 | */ |
517 | 517 | private function getSharedWithMe($node = null, $includeTags, $stateFilter = 0) { |
@@ -870,7 +870,7 @@ discard block |
||
870 | 870 | } |
871 | 871 | |
872 | 872 | /** |
873 | - * @param $id |
|
873 | + * @param integer $id |
|
874 | 874 | * @param $state |
875 | 875 | * @return \OC\OCS\Result |
876 | 876 | */ |
@@ -1041,6 +1041,7 @@ discard block |
||
1041 | 1041 | * not support this we need to check all backends. |
1042 | 1042 | * |
1043 | 1043 | * @param string $id |
1044 | + * @param string $recipient |
|
1044 | 1045 | * @return \OCP\Share\IShare |
1045 | 1046 | * @throws ShareNotFound |
1046 | 1047 | */ |
@@ -59,7 +59,7 @@ |
||
59 | 59 | /** |
60 | 60 | * @param RequestInterface $request |
61 | 61 | * @param ResponseInterface $response |
62 | - * @return bool|void |
|
62 | + * @return null|false |
|
63 | 63 | * @throws \Sabre\DAV\Exception\BadRequest |
64 | 64 | * @throws \Sabre\DAV\Exception\Conflict |
65 | 65 | * @throws \Sabre\DAV\Exception\NotFound |