1 | <?php |
||
8 | class Period |
||
9 | { |
||
10 | /** @var \DateTime */ |
||
11 | public $startDate; |
||
12 | |||
13 | /** @var \DateTime */ |
||
14 | public $endDate; |
||
15 | |||
16 | public static function create(DateTime $startDate, $endDate): Period |
||
20 | |||
21 | public static function days(int $numberOfDays): Period |
||
29 | |||
30 | public function __construct(DateTime $startDate, DateTime $endDate) |
||
36 | } |
||
37 |