1 | <?php |
||
18 | class StackPlugin implements Plugin |
||
19 | { |
||
20 | use Plugin\VersionBridgePlugin; |
||
21 | |||
22 | /** |
||
23 | * @var Collector |
||
24 | */ |
||
25 | private $collector; |
||
26 | |||
27 | /** |
||
28 | * @var string |
||
29 | */ |
||
30 | private $client; |
||
31 | |||
32 | /** |
||
33 | * @var Formatter |
||
34 | */ |
||
35 | private $formatter; |
||
36 | |||
37 | /** |
||
38 | * @param Collector $collector |
||
39 | * @param Formatter $formatter |
||
40 | 12 | * @param string $client |
|
41 | */ |
||
42 | 12 | public function __construct(Collector $collector, Formatter $formatter, $client) |
|
48 | |||
49 | protected function doHandleRequest(RequestInterface $request, callable $next, callable $first) |
||
75 | } |
||
76 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.