$days) { $index = ++$key; $monthKey = ($index < 10) ? '0' . $index : $index; $date = new \DateTimeImmutable(\sprintf('2020-%s-25 13:00:00', $monthKey)); $month = new Month($date); self::assertEquals(\sprintf('2020-%s-25', $monthKey), $month->getMonth()->format('Y-m-d')); self::assertCount($days, $month->getDays()); } } }