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