1 | <?php |
||
13 | class DissectEventAdapter implements ICalEvent |
||
14 | { |
||
15 | |||
16 | /** |
||
17 | * @var \JMBTechnologyLimited\ICalDissect\ICalEvent |
||
18 | */ |
||
19 | protected $event; |
||
20 | |||
21 | /** |
||
22 | * DissectEvent constructor. |
||
23 | * @param \JMBTechnologyLimited\ICalDissect\ICalEvent $event |
||
24 | */ |
||
25 | public function __construct(\JMBTechnologyLimited\ICalDissect\ICalEvent $event) |
||
29 | |||
30 | /** |
||
31 | * @return array |
||
32 | */ |
||
33 | public function getRawData(): array |
||
37 | |||
38 | /** |
||
39 | * @return \JMBTechnologyLimited\ICalDissect\ICalEvent |
||
40 | */ |
||
41 | public function getEvent(): \JMBTechnologyLimited\ICalDissect\ICalEvent |
||
45 | |||
46 | /** |
||
47 | * @inheritDoc |
||
48 | */ |
||
49 | public function getUid(): string |
||
53 | |||
54 | /** |
||
55 | * @inheritDoc |
||
56 | */ |
||
57 | public function getTitle(): ?string |
||
61 | |||
62 | /** |
||
63 | * @inheritDoc |
||
64 | */ |
||
65 | public function getDescription(): ?string |
||
69 | |||
70 | /** |
||
71 | * @inheritDoc |
||
72 | */ |
||
73 | public function getLocation(): ?string |
||
77 | |||
78 | /** |
||
79 | * @inheritDoc |
||
80 | */ |
||
81 | public function getOrganizer(): ?string |
||
85 | |||
86 | /** |
||
87 | * @inheritDoc |
||
88 | */ |
||
89 | public function getStartDate(): ?\DateTime |
||
96 | |||
97 | /** |
||
98 | * @inheritDoc |
||
99 | */ |
||
100 | public function getStartTime(): int |
||
107 | |||
108 | /** |
||
109 | * @inheritDoc |
||
110 | */ |
||
111 | public function getEndDate(): ?\DateTime |
||
124 | |||
125 | /** |
||
126 | * @inheritDoc |
||
127 | */ |
||
128 | public function getEndTime(): int |
||
135 | |||
136 | /** |
||
137 | * @inheritDoc |
||
138 | */ |
||
139 | public function isAllDay(): bool |
||
159 | |||
160 | /** |
||
161 | * @inheritDoc |
||
162 | */ |
||
163 | public function isOpenEndTime(): bool |
||
167 | |||
168 | /** |
||
169 | * @inheritDoc |
||
170 | */ |
||
171 | public function getState(): string |
||
178 | } |
||
179 |