src/Listener/FormSectionUpdatedListener.php line 19

Open in your IDE?
  1. <?php
  2. namespace App\Listener;
  3. use App\Event\FormSectionUpdatedEvent;
  4. use App\Service\FormSection\FormSectionService;
  5. class FormSectionUpdatedListener
  6. {
  7.     private FormSectionService $formSectionService;
  8.     public function __construct(
  9.         FormSectionService $formSectionService
  10.     )
  11.     {
  12.         $this->formSectionService $formSectionService;
  13.     }
  14.     public function onFormSectionVersionUpdate(FormSectionUpdatedEvent $event) : void
  15.     {
  16.         $this->formSectionService->upgradeTaxationFormSectionVersion($event->getFormSection());
  17.     }
  18. }