1 | <?php |
||
12 | class SubjectAdderListener implements EventSubscriberInterface |
||
13 | { |
||
14 | /** |
||
15 | * @var ConfirmationInterface |
||
16 | */ |
||
17 | protected $confirmation; |
||
18 | |||
19 | public function __construct(ConfirmationInterface $confirmation) |
||
23 | |||
24 | /** |
||
25 | * {@inheritdoc} |
||
26 | */ |
||
27 | public static function getSubscribedEvents() |
||
33 | |||
34 | public function addSubject(FormEvent $event) |
||
49 | } |
||
50 |