1 | <?php |
||
13 | class ScenarioClearListener implements EventSubscriberInterface |
||
14 | { |
||
15 | /** |
||
16 | * @var PlaceholderBagInterface |
||
17 | */ |
||
18 | private $parameterBag; |
||
19 | |||
20 | /** |
||
21 | * @param PlaceholderBagInterface $parameterBag |
||
22 | */ |
||
23 | public function __construct(PlaceholderBagInterface $parameterBag) |
||
27 | |||
28 | /** |
||
29 | * Placeholder are only valid per scenario scope. |
||
30 | */ |
||
31 | public function onBeforeAfterScenario() |
||
35 | |||
36 | /** |
||
37 | * {@inheritdoc} |
||
38 | */ |
||
39 | public static function getSubscribedEvents() |
||
46 | } |