Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
20 | public function __construct( |
||
21 | Guzzle $guzzle, |
||
22 | LoggerInterface $logger, |
||
23 | array $config = []) |
||
24 | { |
||
25 | $this->setGuzzle($guzzle); |
||
26 | $this->setLog($logger); |
||
27 | $this->setConfig(array_merge( |
||
28 | [ |
||
29 | 'matchers' => [ |
||
30 | 'graphql' => "/\\bgraphql\\b/i", |
||
31 | ], |
||
32 | ], |
||
33 | $config |
||
34 | )); |
||
35 | } |
||
36 | |||
64 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.