@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | * @param Closure $test |
43 | 43 | * @param string $suiteName |
44 | 44 | * @param string $successMessage |
45 | - * @param int|null $exceptionCode |
|
45 | + * @param integer $exceptionCode |
|
46 | 46 | * @param string $exceptionClass |
47 | 47 | * @return Suite |
48 | 48 | * @throws AssertionFailedException |
@@ -166,7 +166,7 @@ discard block |
||
166 | 166 | * @param string $testName |
167 | 167 | * @param Closure $test |
168 | 168 | * @param string $successMessage |
169 | - * @param int|null $exceptionCode |
|
169 | + * @param integer $exceptionCode |
|
170 | 170 | * @param string $exceptionClass |
171 | 171 | * @return Suite |
172 | 172 | * @throws AssertionFailedException |
@@ -251,7 +251,7 @@ discard block |
||
251 | 251 | * @param string $testName |
252 | 252 | * @param Closure $test |
253 | 253 | * @param string $successMessage |
254 | - * @param int|null $exceptionCode |
|
254 | + * @param integer $exceptionCode |
|
255 | 255 | * @param string $exceptionClass |
256 | 256 | * @throws AssertionFailedException |
257 | 257 | */ |
@@ -707,8 +707,8 @@ discard block |
||
707 | 707 | /** |
708 | 708 | * Log messages to resource |
709 | 709 | * |
710 | - * @param mixed $level The level of the log message |
|
711 | - * @param string|object $message If an object is passed it must implement __toString() |
|
710 | + * @param string $level The level of the log message |
|
711 | + * @param string $message If an object is passed it must implement __toString() |
|
712 | 712 | * @param array $context Placeholders to be substituted in the message |
713 | 713 | */ |
714 | 714 | public function log($level, $message, array $context=[]) |
@@ -784,7 +784,7 @@ discard block |
||
784 | 784 | } |
785 | 785 | |
786 | 786 | /** |
787 | - * @return mixed|resource |
|
787 | + * @return resource |
|
788 | 788 | * @throws \Exception |
789 | 789 | */ |
790 | 790 | protected function getResource() |
@@ -534,7 +534,7 @@ discard block |
||
534 | 534 | /** |
535 | 535 | * Assert that value is not equal to a provided value (using == ). |
536 | 536 | * |
537 | - * @param mixed $value2 |
|
537 | + * @param string $value2 |
|
538 | 538 | * @param string $message |
539 | 539 | * @param string $fieldName |
540 | 540 | * @return Assert |
@@ -1408,7 +1408,7 @@ discard block |
||
1408 | 1408 | /** |
1409 | 1409 | * Alias of {@see choice()} |
1410 | 1410 | * |
1411 | - * @param array $choices |
|
1411 | + * @param integer[] $choices |
|
1412 | 1412 | * @param string $message |
1413 | 1413 | * @param string $fieldName |
1414 | 1414 | * @return Assert |
@@ -1585,7 +1585,7 @@ discard block |
||
1585 | 1585 | /** |
1586 | 1586 | * Assert that key exists in the values array. |
1587 | 1587 | * |
1588 | - * @param string|integer $key |
|
1588 | + * @param string $key |
|
1589 | 1589 | * @param string $message |
1590 | 1590 | * @param string $fieldName |
1591 | 1591 | * @return Assert |
@@ -2728,7 +2728,7 @@ discard block |
||
2728 | 2728 | } |
2729 | 2729 | |
2730 | 2730 | /** |
2731 | - * @param $func |
|
2731 | + * @param string $func |
|
2732 | 2732 | * @param $args |
2733 | 2733 | * @return bool |
2734 | 2734 | * @throws AssertionFailedException |