Completed
Push — master ( 935c3f...dfc993 )
by
unknown
03:50 queued 10s
created
src/ConstraintCheck/Message/ViolationMessageSerializer.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -16,6 +16,9 @@
 block discarded – undo
16 16
  */
17 17
 class ViolationMessageSerializer implements Serializer {
18 18
 
19
+	/**
20
+	 * @param string $fullMessageKey
21
+	 */
19 22
 	private function abbreviateViolationMessageKey( $fullMessageKey ) {
20 23
 		return substr( $fullMessageKey, strlen( ViolationMessage::MESSAGE_KEY_PREFIX ) );
21 24
 	}
Please login to merge, or discard this patch.
src/ConstraintCheck/DelegatingConstraintChecker.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -310,7 +310,7 @@  discard block
 block discarded – undo
310 310
 	}
311 311
 
312 312
 	/**
313
-	 * @param EntityDocument|StatementListProvider $entity
313
+	 * @param EntityDocument $entity
314 314
 	 * @param string[]|null $constraintIds list of constraints to check (if null: all constraints)
315 315
 	 * @param callable|null $defaultResultsPerContext optional function to pre-populate the check results
316 316
 	 *
@@ -338,7 +338,7 @@  discard block
 block discarded – undo
338 338
 	}
339 339
 
340 340
 	/**
341
-	 * @param EntityDocument|StatementListProvider $entity
341
+	 * @param EntityDocument $entity
342 342
 	 * @param Statement $statement
343 343
 	 * @param string[]|null $constraintIds list of constraints to check (if null: all constraints)
344 344
 	 * @param callable|null $defaultResultsPerContext optional function to pre-populate the check results
Please login to merge, or discard this patch.
src/ConstraintCheck/Helper/LoggingHelper.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -65,6 +65,7 @@  discard block
 block discarded – undo
65 65
 	 * and return it along with the associated log level.
66 66
 	 *
67 67
 	 * @param float $durationSeconds
68
+	 * @param double[] $limits
68 69
 	 * @return array [ $limitSeconds, $logLevel ]
69 70
 	 */
70 71
 	private function findLimit( $limits, $durationSeconds ) {
@@ -174,6 +175,7 @@  discard block
 block discarded – undo
174 175
 	 * @param EntityId $entityId
175 176
 	 * @param CheckResult[] $checkResults
176 177
 	 * @param float $durationSeconds
178
+	 * @param string $method
177 179
 	 */
178 180
 	public function logConstraintCheckOnEntity(
179 181
 		EntityId $entityId,
Please login to merge, or discard this patch.