1 | <?php |
||
14 | class TestChooserListener implements EventSubscriberInterface |
||
15 | { |
||
16 | /** |
||
17 | * @var Config |
||
18 | */ |
||
19 | private $config; |
||
20 | |||
21 | /** |
||
22 | * @var SuiteChooser |
||
23 | */ |
||
24 | private $suiteChooser; |
||
25 | |||
26 | /** |
||
27 | * @var FeatureChooser |
||
28 | */ |
||
29 | private $featureChooser; |
||
30 | |||
31 | /** |
||
32 | * @var ScenarioChooser |
||
33 | */ |
||
34 | private $scenarioChooser; |
||
35 | |||
36 | /** |
||
37 | * @param Config $config |
||
38 | * @param SuiteChooser $suiteChooser |
||
39 | * @param FeatureChooser $featureChooser |
||
40 | * @param ScenarioChooser $scenarioChooser |
||
41 | */ |
||
42 | public function __construct( |
||
53 | |||
54 | /** |
||
55 | * {@inheritdoc} |
||
56 | */ |
||
57 | public static function getSubscribedEvents() |
||
69 | |||
70 | public function selectSuite(BeforeAvailableSuitesRegistered $event) |
||
76 | |||
77 | public function selectFeature(AfterAvailableSuitesRegistered $event) |
||
83 | |||
84 | public function selectScenario(AfterAvailableSuitesRegistered $event) |
||
90 | } |
||
91 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.