Completed
Push — master ( 81f3e7...e6d8eb )
by
unknown
03:27 queued 37s
created
src/DiffOp/Diff/Diff.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -358,7 +358,7 @@  discard block
 block discarded – undo
358 358
 	/**
359 359
 	 * @since 2.0
360 360
 	 *
361
-	 * @param mixed $target
361
+	 * @param Diff $target
362 362
 	 *
363 363
 	 * @return bool
364 364
 	 */
@@ -406,7 +406,7 @@  discard block
 block discarded – undo
406 406
 	 *
407 407
 	 * @since 0.1
408 408
 	 *
409
-	 * @param int|string $index
409
+	 * @param integer|null $index
410 410
 	 * @param mixed $value
411 411
 	 */
412 412
 	public function offsetSet( $index, $value ) {
Please login to merge, or discard this patch.
tests/phpunit/Differ/OrderedListDifferTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -248,6 +248,9 @@
 block discarded – undo
248 248
 		);
249 249
 	}
250 250
 
251
+	/**
252
+	 * @param string $message
253
+	 */
251 254
 	private function doTestDiff( Differ $differ, $old, $new, $expected, $message ) {
252 255
 		$actual = $differ->doDiff( $old, $new );
253 256
 
Please login to merge, or discard this patch.
tests/phpunit/Differ/CallbackListDifferTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -248,6 +248,9 @@
 block discarded – undo
248 248
 		);
249 249
 	}
250 250
 
251
+	/**
252
+	 * @param string $message
253
+	 */
251 254
 	private function doTestDiff( Differ $differ, $old, $new, $expected, $message ) {
252 255
 		$actual = $differ->doDiff( $old, $new );
253 256
 
Please login to merge, or discard this patch.