1 | <?php |
||
14 | final class BeforeDeleteContentEvent extends BeforeEvent |
||
15 | { |
||
16 | public const NAME = 'ezplatform.event.content.delete.before'; |
||
17 | |||
18 | /** |
||
19 | * @var \eZ\Publish\API\Repository\Values\Content\ContentInfo |
||
20 | */ |
||
21 | private $contentInfo; |
||
22 | |||
23 | public function __construct(ContentInfo $contentInfo) |
||
27 | |||
28 | public function getContentInfo(): ContentInfo |
||
32 | } |
||
33 |