1 | <?php |
||
14 | final class DeleteTranslationEvent extends AfterEvent |
||
15 | { |
||
16 | public const NAME = 'ezplatform.event.translation.delete'; |
||
17 | |||
18 | /** |
||
19 | * @var \eZ\Publish\API\Repository\Values\Content\ContentInfo |
||
20 | */ |
||
21 | private $contentInfo; |
||
22 | |||
23 | private $languageCode; |
||
24 | |||
25 | public function __construct( |
||
32 | |||
33 | public function getContentInfo(): ContentInfo |
||
37 | |||
38 | public function getLanguageCode() |
||
42 | } |
||
43 |