| 1 | <?php |
||
| 21 | class DoctrineORMListenerContainerAware implements EventSubscriber |
||
| 22 | { |
||
| 23 | protected $listener; |
||
| 24 | |||
| 25 | protected $service; |
||
| 26 | |||
| 27 | protected $container; |
||
| 28 | |||
| 29 | public function __construct(ContainerInterface $container, string $service) |
||
| 34 | |||
| 35 | public function getSubscribedEvents(): array |
||
| 42 | |||
| 43 | public function preRemove(LifecycleEventArgs $args): void |
||
| 49 | |||
| 50 | public function preUpdate(LifecycleEventArgs $args): void |
||
| 56 | |||
| 57 | private function load(): void |
||
| 65 | } |
||
| 66 |