1 | <?php |
||
6 | class FlexDate |
||
7 | { |
||
8 | |||
9 | const PRECISION_YEAR = 'year'; |
||
10 | |||
11 | const PRECISION_MONTH = 'month'; |
||
12 | |||
13 | const PRECISION_DAY = 'day'; |
||
14 | |||
15 | /** |
||
16 | * @var int|null |
||
17 | */ |
||
18 | protected $year; |
||
19 | |||
20 | /** |
||
21 | * @var int|null |
||
22 | */ |
||
23 | protected $month; |
||
24 | |||
25 | /** |
||
26 | * @var int|null |
||
27 | */ |
||
28 | protected $day; |
||
29 | |||
30 | /** |
||
31 | * @param int|null $year |
||
32 | * @param int|null $month |
||
33 | * @param int|null $day |
||
34 | */ |
||
35 | public function __construct($year = null, $month = null, $day = null) |
||
41 | |||
42 | /** |
||
43 | * @return int|null |
||
44 | */ |
||
45 | public function getYear() |
||
49 | |||
50 | /** |
||
51 | * @param int|null $year |
||
52 | */ |
||
53 | public function setYear($year) |
||
57 | |||
58 | /** |
||
59 | * @return int|null |
||
60 | */ |
||
61 | public function getMonth() |
||
65 | |||
66 | /** |
||
67 | * @param int|null $month |
||
68 | */ |
||
69 | public function setMonth($month) |
||
73 | |||
74 | /** |
||
75 | * @return int|null |
||
76 | */ |
||
77 | public function getDay() |
||
81 | |||
82 | /** |
||
83 | * @param int|null $day |
||
84 | */ |
||
85 | public function setDay($day) |
||
89 | |||
90 | /** |
||
91 | * @return bool |
||
92 | */ |
||
93 | public function hasValue() |
||
97 | |||
98 | /** |
||
99 | * @return bool |
||
100 | */ |
||
101 | public function isCompleteDate() |
||
105 | |||
106 | /** |
||
107 | * @return bool |
||
108 | */ |
||
109 | public function isValid() |
||
119 | |||
120 | /** |
||
121 | * @return bool |
||
122 | * @throws \Exception |
||
123 | */ |
||
124 | public function assertValid() |
||
136 | |||
137 | /** |
||
138 | * @return bool |
||
139 | */ |
||
140 | public function isValidDate() |
||
144 | |||
145 | /** |
||
146 | * @¶eturn \DateTime |
||
147 | */ |
||
148 | public function toDateTime() |
||
158 | |||
159 | /** |
||
160 | * {@inheritdoc} |
||
161 | */ |
||
162 | public function __toString() |
||
179 | |||
180 | /** |
||
181 | * @param string $dateString |
||
182 | * |
||
183 | * @return FlexDate |
||
184 | */ |
||
185 | public static function fromString($dateString) |
||
206 | |||
207 | public function getPrecision() |
||
223 | } |
||
224 |