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