1 | <?php |
||
15 | class DeleteUserSubscriber implements EventSubscriberInterface |
||
16 | { |
||
17 | /** @var \eZ\Publish\API\Repository\ContentTypeService */ |
||
18 | private $contentTypeService; |
||
19 | |||
20 | public function __construct(ContentTypeService $contentTypeService) |
||
24 | |||
25 | public static function getSubscribedEvents(): array |
||
31 | |||
32 | public function onDeleteUser(DeleteUserEvent $event): void |
||
36 | } |
||
37 |