| 1 | <?php |
||
| 15 | final class DeleteRelationEvent extends AfterEvent |
||
| 16 | { |
||
| 17 | public const NAME = 'ezplatform.event.relation.delete'; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var \eZ\Publish\API\Repository\Values\Content\VersionInfo |
||
| 21 | */ |
||
| 22 | private $sourceVersion; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var \eZ\Publish\API\Repository\Values\Content\ContentInfo |
||
| 26 | */ |
||
| 27 | private $destinationContent; |
||
| 28 | |||
| 29 | public function __construct( |
||
| 36 | |||
| 37 | public function getSourceVersion(): VersionInfo |
||
| 41 | |||
| 42 | public function getDestinationContent(): ContentInfo |
||
| 46 | } |
||
| 47 |