| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | public function let(Client $client, HttpClient $http, Request $request, Response $response) |
||
|
|
|||
| 15 | { |
||
| 16 | $client->getHttpClient()->willReturn($http); |
||
| 17 | $http->get('supported-languages')->willReturn($response); |
||
| 18 | $response->getBody()->willReturn('<xml></xml>'); |
||
| 19 | $this->beConstructedWith($client); |
||
| 20 | } |
||
| 21 | |||
| 32 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.