1 | <?php |
||
21 | final class ModifyUserMessageAttachmentsEvent |
||
22 | { |
||
23 | /** |
||
24 | * @var array |
||
25 | */ |
||
26 | private $attachments; |
||
27 | |||
28 | /** |
||
29 | * @var Registration |
||
30 | */ |
||
31 | private $registration; |
||
32 | |||
33 | /** |
||
34 | * @var int |
||
35 | */ |
||
36 | private $type; |
||
37 | |||
38 | /** |
||
39 | * @var NotificationService |
||
40 | */ |
||
41 | private $notificationService; |
||
42 | |||
43 | public function __construct( |
||
54 | |||
55 | /** |
||
56 | * @return array |
||
57 | */ |
||
58 | public function getAttachments(): array |
||
62 | |||
63 | /** |
||
64 | * @return Registration |
||
65 | */ |
||
66 | public function getRegistration(): Registration |
||
70 | |||
71 | /** |
||
72 | * @return int |
||
73 | */ |
||
74 | public function getType(): int |
||
78 | |||
79 | /** |
||
80 | * @return NotificationService |
||
81 | */ |
||
82 | public function getNotificationService(): NotificationService |
||
86 | |||
87 | /** |
||
88 | * @param array $attachments |
||
89 | */ |
||
90 | public function setAttachments(array $attachments): void |
||
94 | } |
||
95 |