1 | <?php |
||
15 | final class PublishVersionEvent extends AfterEvent |
||
16 | { |
||
17 | /** |
||
18 | * @var \eZ\Publish\API\Repository\Values\Content\Content |
||
19 | */ |
||
20 | private $content; |
||
21 | |||
22 | /** |
||
23 | * @var \eZ\Publish\API\Repository\Values\Content\VersionInfo |
||
24 | */ |
||
25 | private $versionInfo; |
||
26 | |||
27 | /** |
||
28 | * @var string[] |
||
29 | */ |
||
30 | private $translations; |
||
31 | |||
32 | public function __construct( |
||
41 | |||
42 | public function getContent(): Content |
||
46 | |||
47 | public function getVersionInfo(): VersionInfo |
||
51 | |||
52 | public function getTranslations(): array |
||
56 | } |
||
57 |