@@ -306,7 +306,7 @@ discard block |
||
306 | 306 | * current mock object. The partial may then be passed to a second process |
307 | 307 | * to see if it fulfils the same (or exact same) contract as the original. |
308 | 308 | * |
309 | - * @param Closure $closure |
|
309 | + * @param \Closure $closure |
|
310 | 310 | */ |
311 | 311 | public function shouldExpect(\Closure $closure) |
312 | 312 | { |
@@ -360,7 +360,7 @@ discard block |
||
360 | 360 | * Iterate across all expectation directors and validate each |
361 | 361 | * |
362 | 362 | * @throws \Mockery\CountValidator\Exception |
363 | - * @return void |
|
363 | + * @return boolean|null |
|
364 | 364 | */ |
365 | 365 | public function mockery_verify() |
366 | 366 | { |
@@ -703,6 +703,9 @@ discard block |
||
703 | 703 | } |
704 | 704 | } |
705 | 705 | |
706 | + /** |
|
707 | + * @return ReceivedMethodCalls |
|
708 | + */ |
|
706 | 709 | protected function _mockery_getReceivedMethodCalls() |
707 | 710 | { |
708 | 711 | return $this->_mockery_receivedMethodCalls ?: $this->_mockery_receivedMethodCalls = new \Mockery\ReceivedMethodCalls(); |
@@ -806,7 +809,7 @@ discard block |
||
806 | 809 | } |
807 | 810 | |
808 | 811 | /** |
809 | - * @return array |
|
812 | + * @return MockInterface |
|
810 | 813 | */ |
811 | 814 | private function getNonPublicMethods() |
812 | 815 | { |