1 | <?php |
||
9 | class Period |
||
10 | { |
||
11 | /** @var \DateTime */ |
||
12 | public $startDate; |
||
13 | |||
14 | /** @var \DateTime */ |
||
15 | public $endDate; |
||
16 | |||
17 | public static function create(DateTime $startDate, $endDate): Period |
||
21 | |||
22 | public static function days(int $numberOfDays): Period |
||
30 | |||
31 | public static function months(int $numberOfMonths): Period |
||
39 | |||
40 | public static function years(int $numberOfYears): Period |
||
48 | |||
49 | public function __construct(DateTime $startDate, DateTime $endDate) |
||
59 | } |
||
60 |