Completed
Push — some-scrutinizing ( d3de44...c6cac2 )
by Maxence
02:32
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/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
 		$pf = ($qb->getType() === QueryBuilder::SELECT) ? 's.' : '';
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
 	 * limit the request to a userId
174 174
 	 *
175 175
 	 * @param $qb
176
-	 * @param $userId
176
+	 * @param string $userId
177 177
 	 * @param bool $reShares
178 178
 	 */
179 179
 	protected function limitToOwner(& $qb, $userId, $reShares = false) {
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
 	 * @deprecated
201 201
 	 *
202 202
 	 * @param $qb
203
-	 * @param $shareId
203
+	 * @param integer $shareId
204 204
 	 */
205 205
 	protected function linkCircleField(& $qb, $shareId) {
206 206
 		$expr = $qb->expr();
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
 	 * Link to members (userId) of circle
221 221
 	 *
222 222
 	 * @param $qb
223
-	 * @param $userId
223
+	 * @param string $userId
224 224
 	 */
225 225
 	protected function linkToMember(& $qb, $userId) {
226 226
 		$expr = $qb->expr();
@@ -236,7 +236,7 @@  discard block
 block discarded – undo
236 236
 	 * Link to storage/filecache
237 237
 	 *
238 238
 	 * @param $qb
239
-	 * @param $userId
239
+	 * @param string $userId
240 240
 	 */
241 241
 	protected function linkToFileCache(& $qb, $userId) {
242 242
 		$expr = $qb->expr();
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.