1 | <?php |
||
9 | class TqContextInitializer implements Behat\Initializer\ContextInitializer |
||
10 | { |
||
11 | /** |
||
12 | * Parameters of TqExtension. |
||
13 | * |
||
14 | * @var array |
||
15 | */ |
||
16 | private $parameters = []; |
||
17 | |||
18 | /** |
||
19 | * @param array $parameters |
||
20 | * @param string $namespace |
||
21 | * @param string $path |
||
22 | */ |
||
23 | public function __construct(array $parameters, $namespace, $path) |
||
29 | |||
30 | /** |
||
31 | * {@inheritdoc} |
||
32 | */ |
||
33 | public function initializeContext(Behat\Context $context) |
||
39 | } |
||
40 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.