1 | <?php |
||
13 | final class Timestamp implements SerializableInterface |
||
14 | { |
||
15 | /** |
||
16 | * @var DateTimeInterface |
||
17 | */ |
||
18 | private $startDate; |
||
19 | |||
20 | /** |
||
21 | * @var DateTimeInterface |
||
22 | */ |
||
23 | private $endDate; |
||
24 | |||
25 | /** |
||
26 | * @var EventStatus|null |
||
27 | */ |
||
28 | private $eventStatus; |
||
29 | |||
30 | final public function __construct( |
||
42 | |||
43 | public function getStartDate(): DateTimeInterface |
||
47 | |||
48 | public function getEndDate(): DateTimeInterface |
||
52 | |||
53 | public function getEventStatus(): ?EventStatus |
||
57 | |||
58 | public static function deserialize(array $data): Timestamp |
||
65 | |||
66 | public function serialize(): array |
||
83 | |||
84 | public static function fromUdb3ModelDateRange(DateRange $dateRange): Timestamp |
||
91 | } |
||
92 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.