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