Passed
Push — master ( 3134f4...6a4da5 )
by Jeroen De
02:23
created
src/DiffOp/Diff/Diff.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -400,7 +400,7 @@
 block discarded – undo
400 400
 	 *
401 401
 	 * @since 0.1
402 402
 	 *
403
-	 * @param int|string $index
403
+	 * @param integer|null $index
404 404
 	 * @param mixed $value
405 405
 	 */
406 406
 	public function offsetSet( $index, $value ) {
Please login to merge, or discard this patch.
tests/unit/Differ/ListDifferTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -224,6 +224,9 @@
 block discarded – undo
224 224
 		$this->doTestDiff( new ListDiffer( new NativeArrayComparer() ), $old, $new, $expected, $message );
225 225
 	}
226 226
 
227
+	/**
228
+	 * @param string $message
229
+	 */
227 230
 	private function doTestDiff( Differ $differ, $old, $new, $expected, $message ) {
228 231
 		$actual = $differ->doDiff( $old, $new );
229 232
 
Please login to merge, or discard this patch.