| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 27 | private function getClient() |
||
|
1 ignored issue
–
show
|
|||
| 28 | { |
||
| 29 | return $this |
||
| 30 | ->getMockBuilder(Client::class) |
||
| 31 | ->disableOriginalConstructor() |
||
| 32 | ->getMock() |
||
| 33 | ; |
||
| 34 | } |
||
| 35 | |||
| 69 | } |
Our type inference engine in quite powerful, but sometimes the code does not provide enough clues to go by. In these cases we request you to add a
@returnannotation as described here.