Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
19 | public function __construct($value, $options = []) |
||
20 | { |
||
21 | $this->start = $options->start ?? null; |
||
22 | $this->end = $options->end ?? null; |
||
23 | $this->format = $options->format ?? 'd M Y'; |
||
24 | $this->value = $value; |
||
25 | $this->year = DateTime::createFromFormat($this->format, $this->value)->format('Y'); |
||
26 | } |
||
66 |