| 1 | <?php |
||
| 15 | abstract class AbstractTask implements TaskInterface |
||
| 16 | { |
||
| 17 | /** @var ParkingReservationRepository */ |
||
| 18 | protected $parkingReservationRepository; |
||
| 19 | |||
| 20 | // ----------------------------------------------------------------------------------------------------------------- |
||
| 21 | |||
| 22 | public function __construct(ParkingReservationRepository $parkingReservationRepository) |
||
| 26 | |||
| 27 | // ----------------------------------------------------------------------------------------------------------------- |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @return array|\DateTimeImmutable[] |
||
| 31 | */ |
||
| 32 | protected function getWeekWorkdaysDates(\DateTimeImmutable $weekWorkdayDate): array |
||
| 44 | } |
||
| 45 |