Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 7 |
Ratio | 100 % |
Changes | 0 |
1 | <?php |
||
27 | View Code Duplication | public function it_builds_last_translations(HttpClient $http, Request $request, Response $response) |
|
28 | { |
||
29 | $content = '<?xml version="1.0" encoding="ISO-8859-1"?><success status="built"></success>'; |
||
30 | $response->getBody()->willReturn($content); |
||
31 | $http->get('project/akeneo/export?key=1234')->willReturn($response); |
||
32 | $this->execute()->shouldBe($content); |
||
33 | } |
||
34 | |||
43 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.