1 | <?php |
||
16 | class InvalidArgumentException extends \InvalidArgumentException |
||
17 | { |
||
18 | /** |
||
19 | * @param DateTime $startDate |
||
20 | * @param DateTime $endDate |
||
21 | * @return InvalidArgumentException |
||
22 | */ |
||
23 | 3 | public static function startDateNotBeforeEndDate(DateTime $startDate, DateTime $endDate) : InvalidArgumentException |
|
30 | |||
31 | /** |
||
32 | * @param string|int $time |
||
33 | * @return InvalidArgumentException |
||
34 | */ |
||
35 | 4 | public static function invalidTimeFormat($time) : InvalidArgumentException |
|
41 | |||
42 | /** |
||
43 | * @return InvalidArgumentException |
||
44 | */ |
||
45 | 4 | public static function dateRangeWithoutBoundaries() : InvalidArgumentException |
|
52 | } |
||
53 |