Skip to content

Commit aae0016

Browse files
Fix CS/WS issues
1 parent f6a951e commit aae0016

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

src/Framework/Assert.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,6 @@ public static function assertContainsOnlyInstancesOf(string $className, iterable
430430
* or an attribute of an object contains only values of a given type.
431431
*
432432
* @param object|string $haystackClassOrObject
433-
* @param bool $isNativeType
434433
*
435434
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
436435
* @throws Exception
@@ -482,7 +481,6 @@ public static function assertNotContainsOnly(string $type, iterable $haystack, ?
482481
* type.
483482
*
484483
* @param object|string $haystackClassOrObject
485-
* @param bool $isNativeType
486484
*
487485
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
488486
* @throws Exception

src/Framework/Constraint/Constraint.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,8 @@ protected function matches($other): bool
9191
/**
9292
* Throws an exception for the given compared value and test description.
9393
*
94-
* @param mixed $other evaluated value or object
95-
* @param string $description Additional information about the test
96-
* @param ComparisonFailure $comparisonFailure
94+
* @param mixed $other evaluated value or object
95+
* @param string $description Additional information about the test
9796
*
9897
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
9998
* @throws ExpectationFailedException

src/Framework/Constraint/JsonMatches.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,8 @@ protected function matches($other): bool
6969
/**
7070
* Throws an exception for the given compared value and test description.
7171
*
72-
* @param mixed $other evaluated value or object
73-
* @param string $description Additional information about the test
74-
* @param ComparisonFailure $comparisonFailure
72+
* @param mixed $other evaluated value or object
73+
* @param string $description Additional information about the test
7574
*
7675
* @throws \PHPUnit\Framework\Exception
7776
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException

0 commit comments

Comments
 (0)