Completed
Push — js-scrutinizing ( ed62f5...b30283 )
by Maxence
02:17
created
lib/Db/MembersMapper.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
 	/**
83 83
 	 * Generate SQL Request for getMemberFromCircle()
84 84
 	 *
85
-	 * @param $circleId
85
+	 * @param integer $circleId
86 86
 	 * @param $userId
87 87
 	 *
88 88
 	 * @return \OCP\DB\QueryBuilder\IQueryBuilder
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
 	/**
151 151
 	 * Return SQL for getMembersFromCircle.
152 152
 	 *
153
-	 * @param $circleId
153
+	 * @param integer $circleId
154 154
 	 *
155 155
 	 * @return \OCP\DB\QueryBuilder\IQueryBuilder
156 156
 	 */
Please login to merge, or discard this patch.
lib/ShareByCircleProvider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -221,7 +221,7 @@
 block discarded – undo
221 221
 	 * return the child ID of a share
222 222
 	 *
223 223
 	 * @param IShare $share
224
-	 * @param $userId
224
+	 * @param string $userId
225 225
 	 *
226 226
 	 * @return bool
227 227
 	 */
Please login to merge, or discard this patch.
lib/Db/CircleProviderRequestBuilder.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 	 * Limit the request to a Circle.
67 67
 	 *
68 68
 	 * @param $qb
69
-	 * @param $circleId
69
+	 * @param integer $circleId
70 70
 	 */
71 71
 	protected function limitToCircle(& $qb, $circleId) {
72 72
 		$expr = $qb->expr();
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
 	 * limit the request to a userId
168 168
 	 *
169 169
 	 * @param $qb
170
-	 * @param $userId
170
+	 * @param string $userId
171 171
 	 * @param bool $reShares
172 172
 	 */
173 173
 	protected function limitToOwner(& $qb, $userId, $reShares = false) {
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
 	 * @deprecated
195 195
 	 *
196 196
 	 * @param $qb
197
-	 * @param $shareId
197
+	 * @param integer $shareId
198 198
 	 */
199 199
 	protected function linkCircleField(& $qb, $shareId) {
200 200
 		$expr = $qb->expr();
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
 	 * Link to members (userId) of circle
215 215
 	 *
216 216
 	 * @param $qb
217
-	 * @param $userId
217
+	 * @param string $userId
218 218
 	 */
219 219
 	protected function linkToMember(& $qb, $userId) {
220 220
 		$expr = $qb->expr();
@@ -230,7 +230,7 @@  discard block
 block discarded – undo
230 230
 	 * Link to storage/filecache
231 231
 	 *
232 232
 	 * @param $qb
233
-	 * @param $userId
233
+	 * @param string $userId
234 234
 	 */
235 235
 	protected function linkToFileCache(& $qb, $userId) {
236 236
 		$expr = $qb->expr();
Please login to merge, or discard this patch.