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