@@ -45,7 +45,6 @@ |
||
45 | 45 | protected $assertion; |
46 | 46 | |
47 | 47 | /** |
48 | - * @param ResponderInterface $responder |
|
49 | 48 | */ |
50 | 49 | public function __construct(Assertion $assertion = null) |
51 | 50 | { |
@@ -38,7 +38,6 @@ discard block |
||
38 | 38 | /** |
39 | 39 | * Perform a property assertion. |
40 | 40 | * |
41 | - * @param array|object $actual |
|
42 | 41 | * @param string $property |
43 | 42 | * @param string $message |
44 | 43 | */ |
@@ -51,7 +50,6 @@ discard block |
||
51 | 50 | /** |
52 | 51 | * Perform a negated property assertion. |
53 | 52 | * |
54 | - * @param array|object $actual |
|
55 | 53 | * @param string $property |
56 | 54 | * @param string $message |
57 | 55 | */ |
@@ -77,7 +75,6 @@ discard block |
||
77 | 75 | /** |
78 | 76 | * Perform a negated deep property assertion. |
79 | 77 | * |
80 | - * @param array|object $actual |
|
81 | 78 | * @param string $property |
82 | 79 | * @param string $message |
83 | 80 | */ |
@@ -38,7 +38,6 @@ discard block |
||
38 | 38 | /** |
39 | 39 | * Perform a true assertion. |
40 | 40 | * |
41 | - * @param mixed $actual |
|
42 | 41 | * @param string $message |
43 | 42 | */ |
44 | 43 | public function isTrue($value, $message = "") |
@@ -74,7 +73,6 @@ discard block |
||
74 | 73 | /** |
75 | 74 | * Perform a negated null assertion. |
76 | 75 | * |
77 | - * @param mixed $actual |
|
78 | 76 | * @param string $message |
79 | 77 | */ |
80 | 78 | public function isNotNull($value, $message = "") |
@@ -35,7 +35,6 @@ |
||
35 | 35 | protected $messageTemplate; |
36 | 36 | |
37 | 37 | /** |
38 | - * @param callable $expected |
|
39 | 38 | */ |
40 | 39 | public function __construct($exceptionType) |
41 | 40 | { |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | * Assert that the actual value is an array or object with the expected keys. |
46 | 46 | * |
47 | 47 | * @param $actual |
48 | - * @return mixed |
|
48 | + * @return boolean |
|
49 | 49 | */ |
50 | 50 | protected function doMatch($actual) |
51 | 51 | { |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | * if the expected keys are included in the object or array. |
103 | 103 | * |
104 | 104 | * @param array $actual |
105 | - * @return true |
|
105 | + * @return boolean |
|
106 | 106 | */ |
107 | 107 | protected function matchInclusion($actual) |
108 | 108 | { |
@@ -77,7 +77,7 @@ |
||
77 | 77 | * Breaks a path expression into an array used |
78 | 78 | * for navigating a path. |
79 | 79 | * |
80 | - * @param $path |
|
80 | + * @param string $path |
|
81 | 81 | * @return array |
82 | 82 | */ |
83 | 83 | public function getPathParts($path) |