| 1 | <?php |
||
| 15 | final class CreateNotificationEvent extends AfterEvent |
||
| 16 | { |
||
| 17 | public const NAME = 'ezplatform.event.notification.create'; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var \eZ\Publish\API\Repository\Values\Notification\Notification |
||
| 21 | */ |
||
| 22 | private $notification; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var \eZ\Publish\API\Repository\Values\Notification\CreateStruct |
||
| 26 | */ |
||
| 27 | private $createStruct; |
||
| 28 | |||
| 29 | public function __construct( |
||
| 36 | |||
| 37 | public function getNotification(): Notification |
||
| 41 | |||
| 42 | public function getCreateStruct(): CreateStruct |
||
| 46 | } |
||
| 47 |