| 1 | <?php |
||
| 22 | final class ScenarioContainerResetter implements EventSubscriberInterface |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @var ResettableContainerInterface |
||
| 26 | */ |
||
| 27 | private $scenarioContainer; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param ResettableContainerInterface $scenarioContainer |
||
| 31 | */ |
||
| 32 | public function __construct(ResettableContainerInterface $scenarioContainer) |
||
| 36 | |||
| 37 | /** |
||
| 38 | * {@inheritdoc} |
||
| 39 | */ |
||
| 40 | public static function getSubscribedEvents() |
||
| 47 | |||
| 48 | public function reset() |
||
| 52 | } |
||
| 53 |