@@ -131,7 +131,7 @@ |
||
131 | 131 | |
132 | 132 | /** |
133 | 133 | * @param string $filename |
134 | - * @param array $subString |
|
134 | + * @param array $subStrings |
|
135 | 135 | * @param int $type |
136 | 136 | * @return bool |
137 | 137 | * @since Method available since Release 1.1.0 |
@@ -530,7 +530,7 @@ |
||
530 | 530 | } |
531 | 531 | |
532 | 532 | /** |
533 | - * @return boolean|string |
|
533 | + * @return false|string |
|
534 | 534 | */ |
535 | 535 | public function getParent() |
536 | 536 | { |
@@ -14,6 +14,9 @@ |
||
14 | 14 | |
15 | 15 | interface b extends a |
16 | 16 | { |
17 | + /** |
|
18 | + * @return void |
|
19 | + */ |
|
17 | 20 | public function baz(Baz $baz); |
18 | 21 | } |
19 | 22 |
@@ -22,10 +22,10 @@ |
||
22 | 22 | |
23 | 23 | /** |
24 | 24 | * @param string $className |
25 | - * @param string $methodname |
|
25 | + * @param string $methodName |
|
26 | 26 | * @param array $parameters |
27 | - * @param object $object |
|
28 | - * @param object $cloneObjects |
|
27 | + * @param stdClass $object |
|
28 | + * @param object stdClass |
|
29 | 29 | */ |
30 | 30 | public function __construct($className, $methodName, array $parameters, $object, $cloneObjects = false) |
31 | 31 | { |
@@ -59,7 +59,7 @@ |
||
59 | 59 | |
60 | 60 | /** |
61 | 61 | * @param string $className |
62 | - * @param string $methodname |
|
62 | + * @param string $methodName |
|
63 | 63 | * @param array $parameters |
64 | 64 | * @param bool $cloneObjects |
65 | 65 | */ |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | |
54 | 54 | /** |
55 | 55 | * @param mixed $id |
56 | - * @return bool|null |
|
56 | + * @return PHPUnit_Framework_MockObject_Builder_Match|null |
|
57 | 57 | */ |
58 | 58 | public function lookupId($id) |
59 | 59 | { |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | } |
146 | 146 | |
147 | 147 | /** |
148 | - * @return bool |
|
148 | + * @return boolean|null |
|
149 | 149 | */ |
150 | 150 | public function verify() |
151 | 151 | { |
@@ -57,7 +57,7 @@ |
||
57 | 57 | |
58 | 58 | /** |
59 | 59 | * @param PHPUnit_Framework_MockObject_Invocation $invocation |
60 | - * @return bool |
|
60 | + * @return boolean|null |
|
61 | 61 | */ |
62 | 62 | public function matches(PHPUnit_Framework_MockObject_Invocation $invocation) |
63 | 63 | { |
@@ -79,9 +79,6 @@ |
||
79 | 79 | * does the matcher will get the invoked() method called which should check |
80 | 80 | * if an expectation is met. |
81 | 81 | * |
82 | - * @param PHPUnit_Framework_MockObject_Invocation $invocation |
|
83 | - * Object containing information on a mocked or stubbed method which |
|
84 | - * was invoked. |
|
85 | 82 | * @return bool |
86 | 83 | * @throws PHPUnit_Framework_ExpectationFailedException |
87 | 84 | */ |
@@ -45,10 +45,7 @@ |
||
45 | 45 | * the matcher will get the invoked() method called which should check if an |
46 | 46 | * expectation is met. |
47 | 47 | * |
48 | - * @param PHPUnit_Framework_MockObject_Invocation $invocation |
|
49 | - * Object containing information on a mocked or stubbed method which |
|
50 | - * was invoked. |
|
51 | - * @return bool |
|
48 | + * @return boolean|null |
|
52 | 49 | */ |
53 | 50 | public function verify() |
54 | 51 | { |