| 1 | <?php |
||
| 20 | class StackPlugin implements Plugin |
||
| 21 | { |
||
| 22 | use Plugin\VersionBridgePlugin; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var Collector |
||
| 26 | */ |
||
| 27 | private $collector; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @var string |
||
| 31 | */ |
||
| 32 | private $client; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @var Formatter |
||
| 36 | */ |
||
| 37 | private $formatter; |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @param string $client |
||
| 41 | */ |
||
| 42 | 13 | public function __construct(Collector $collector, Formatter $formatter, $client) |
|
| 48 | |||
| 49 | 9 | 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.