| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | 3 | public function __construct(?string $date_string = null) |
|
| 11 | { |
||
| 12 | 3 | $date = new DateTimeImmutable($date_string); |
|
| 13 | |||
| 14 | 3 | $this->start = $date->modify('first day of january')->setTime(0, 0, 0); |
|
| 15 | 3 | $this->end = $date->modify('last day of december')->setTime(23, 59, 59); |
|
| 16 | |||
| 17 | 3 | $period = $this->getPeriod('P1M'); |
|
| 18 | 3 | foreach ($period as $month) { |
|
| 19 | 3 | $this->dates[] = new Month($month->format('Y-m-d')); |
|
| 20 | } |
||
| 21 | 3 | } |
|
| 22 | |||
| 38 |