@@ -24,26 +24,30 @@ |
||
24 | 24 | |
25 | 25 | /** |
26 | 26 | * @param string $message |
27 | + * @return void |
|
27 | 28 | */ |
28 | 29 | public function info($message); |
29 | 30 | |
30 | 31 | /** |
31 | 32 | * @param string $message |
33 | + * @return void |
|
32 | 34 | */ |
33 | 35 | public function warning($message); |
34 | 36 | |
35 | 37 | /** |
36 | 38 | * @param int $max |
39 | + * @return void |
|
37 | 40 | */ |
38 | 41 | public function startProgress($max = 0); |
39 | 42 | |
40 | 43 | /** |
41 | 44 | * @param int $step |
45 | + * @return void |
|
42 | 46 | */ |
43 | 47 | public function advance($step = 1); |
44 | 48 | |
45 | 49 | /** |
46 | - * @param int $max |
|
50 | + * @return void |
|
47 | 51 | */ |
48 | 52 | public function finishProgress(); |
49 | 53 |
@@ -45,6 +45,7 @@ discard block |
||
45 | 45 | class Files { |
46 | 46 | /** |
47 | 47 | * Recusive deletion of folders |
48 | + * @param string $dir |
|
48 | 49 | * @return bool |
49 | 50 | * @since 5.0.0 |
50 | 51 | */ |
@@ -66,7 +67,7 @@ discard block |
||
66 | 67 | /** |
67 | 68 | * Search for files by mimetype |
68 | 69 | * @param string $mimetype |
69 | - * @return array |
|
70 | + * @return \OC\Files\FileInfo[] |
|
70 | 71 | * @since 6.0.0 |
71 | 72 | */ |
72 | 73 | static public function searchByMime( $mimetype ) { |
@@ -524,7 +524,7 @@ |
||
524 | 524 | * @param array $input The array to work on |
525 | 525 | * @param int $case Either MB_CASE_UPPER or MB_CASE_LOWER (default) |
526 | 526 | * @param string $encoding The encoding parameter is the character encoding. Defaults to UTF-8 |
527 | - * @return array |
|
527 | + * @return string |
|
528 | 528 | * @since 4.5.0 |
529 | 529 | */ |
530 | 530 | public static function mb_array_change_key_case($input, $case = MB_CASE_LOWER, $encoding = 'UTF-8') { |
@@ -100,8 +100,8 @@ |
||
100 | 100 | /** |
101 | 101 | * Return the relative date in relation to today. Returns something like "last hour" or "two month ago" |
102 | 102 | * @param int $timestamp unix timestamp |
103 | - * @param boolean $dateOnly |
|
104 | - * @return \OC_L10N_String human readable interpretation of the timestamp |
|
103 | + * @param integer $dateOnly |
|
104 | + * @return string human readable interpretation of the timestamp |
|
105 | 105 | * |
106 | 106 | * @deprecated 8.0.0 Use \OCP\Template::relative_modified_date() instead |
107 | 107 | */ |
@@ -145,6 +145,7 @@ discard block |
||
145 | 145 | /** |
146 | 146 | * @param string $userId |
147 | 147 | * @param string $userId |
148 | + * @param string $token |
|
148 | 149 | * @throws \Exception |
149 | 150 | */ |
150 | 151 | private function checkPasswordResetToken($token, $userId) { |
@@ -166,7 +167,7 @@ discard block |
||
166 | 167 | } |
167 | 168 | |
168 | 169 | /** |
169 | - * @param $message |
|
170 | + * @param string $message |
|
170 | 171 | * @param array $additional |
171 | 172 | * @return array |
172 | 173 | */ |
@@ -102,17 +102,19 @@ discard block |
||
102 | 102 | * with the same attributes |
103 | 103 | * |
104 | 104 | * @since 9.0.0 |
105 | + * @return void |
|
105 | 106 | */ |
106 | 107 | public function updateTag($tagId, $newName, $userVisible, $userAssignable); |
107 | 108 | |
108 | 109 | /** |
109 | 110 | * Delete the given tags from the database and all their relationships. |
110 | 111 | * |
111 | - * @param string|array $tagIds array of tag ids |
|
112 | + * @param string $tagIds array of tag ids |
|
112 | 113 | * |
113 | 114 | * @throws \OCP\SystemTag\TagNotFoundException if at least one tag did not exist |
114 | 115 | * |
115 | 116 | * @since 9.0.0 |
117 | + * @return void |
|
116 | 118 | */ |
117 | 119 | public function deleteTags($tagIds); |
118 | 120 | |
@@ -123,7 +125,7 @@ discard block |
||
123 | 125 | * @param ISystemTag $tag tag to check permission for |
124 | 126 | * @param IUser $user user to check permission for |
125 | 127 | * |
126 | - * @return true if the user is allowed to assign/unassign the tag, false otherwise |
|
128 | + * @return boolean if the user is allowed to assign/unassign the tag, false otherwise |
|
127 | 129 | * |
128 | 130 | * @since 9.1.0 |
129 | 131 | */ |
@@ -133,9 +135,9 @@ discard block |
||
133 | 135 | * Checks whether the given user is allowed to see the tag with the given id. |
134 | 136 | * |
135 | 137 | * @param ISystemTag $tag tag to check permission for |
136 | - * @param IUser $user user to check permission for |
|
138 | + * @param IUser $userId user to check permission for |
|
137 | 139 | * |
138 | - * @return true if the user can see the tag, false otherwise |
|
140 | + * @return boolean if the user can see the tag, false otherwise |
|
139 | 141 | * |
140 | 142 | * @since 9.1.0 |
141 | 143 | */ |
@@ -148,6 +150,7 @@ discard block |
||
148 | 150 | * @param string[] $groupIds group ids of groups that can assign/unassign the tag |
149 | 151 | * |
150 | 152 | * @since 9.1.0 |
153 | + * @return void |
|
151 | 154 | */ |
152 | 155 | public function setTagGroups(ISystemTag $tag, $groupIds); |
153 | 156 |
@@ -197,7 +197,7 @@ discard block |
||
197 | 197 | * and does not take the chroot into account ) |
198 | 198 | * |
199 | 199 | * @param string $path |
200 | - * @return \OCP\Files\Mount\IMountPoint |
|
200 | + * @return Mount\MountPoint|null |
|
201 | 201 | */ |
202 | 202 | public function getMount($path) { |
203 | 203 | return Filesystem::getMountManager()->find($this->getAbsolutePath($path)); |
@@ -960,7 +960,7 @@ discard block |
||
960 | 960 | |
961 | 961 | /** |
962 | 962 | * @param string $path |
963 | - * @return bool|string |
|
963 | + * @return string|false |
|
964 | 964 | * @throws \OCP\Files\InvalidPathException |
965 | 965 | */ |
966 | 966 | public function toTmpFile($path) { |
@@ -1075,7 +1075,7 @@ discard block |
||
1075 | 1075 | * @param string $path |
1076 | 1076 | * @param array $hooks (optional) |
1077 | 1077 | * @param mixed $extraParam (optional) |
1078 | - * @return mixed |
|
1078 | + * @return string |
|
1079 | 1079 | * @throws \Exception |
1080 | 1080 | * |
1081 | 1081 | * This method takes requests for basic filesystem functions (e.g. reading & writing |
@@ -2083,7 +2083,7 @@ discard block |
||
2083 | 2083 | |
2084 | 2084 | /** |
2085 | 2085 | * @param string $filename |
2086 | - * @return array |
|
2086 | + * @return string[] |
|
2087 | 2087 | * @throws \OC\User\NoUserException |
2088 | 2088 | * @throws NotFoundException |
2089 | 2089 | */ |
@@ -68,7 +68,7 @@ |
||
68 | 68 | } |
69 | 69 | |
70 | 70 | /** |
71 | - * @return int |
|
71 | + * @return string |
|
72 | 72 | */ |
73 | 73 | static private function getRefreshInterval() { |
74 | 74 | //defaults to every hour |
@@ -24,7 +24,6 @@ |
||
24 | 24 | |
25 | 25 | use OC\Files\Filesystem; |
26 | 26 | use OC\Files\View; |
27 | -use OC\Lock\MemcacheLockingProvider; |
|
28 | 27 | use OCP\Lock\ILockingProvider; |
29 | 28 | |
30 | 29 | class Locking extends TestCase { |
@@ -26,7 +26,6 @@ discard block |
||
26 | 26 | use OCA\DAV\CalDAV\CalDavBackend; |
27 | 27 | use OCA\DAV\CardDAV\CardDavBackend; |
28 | 28 | use OCA\DAV\CardDAV\ContactsManager; |
29 | -use OCA\DAV\CardDAV\SyncJob; |
|
30 | 29 | use OCA\DAV\CardDAV\SyncService; |
31 | 30 | use OCA\DAV\Connector\Sabre\Principal; |
32 | 31 | use OCA\DAV\DAV\GroupPrincipalBackend; |
@@ -36,7 +35,6 @@ discard block |
||
36 | 35 | use OCP\AppFramework\IAppContainer; |
37 | 36 | use OCP\Contacts\IManager; |
38 | 37 | use OCP\IUser; |
39 | -use Sabre\VObject\Reader; |
|
40 | 38 | use Symfony\Component\EventDispatcher\GenericEvent; |
41 | 39 | |
42 | 40 | class Application extends App { |