| 1 | <?php |
||
| 11 | class ExcludeWeekendConstraint implements RecurrenceConstraintInterface |
||
| 12 | { |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @param Recurrence $recurrence |
||
| 16 | * @param \Datetime $datetime |
||
| 17 | * @return \Datetime |
||
| 18 | */ |
||
| 19 | public function apply(Recurrence $recurrence, \Datetime $datetime) |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @param \Datetime $datetime |
||
| 32 | * @return bool |
||
| 33 | */ |
||
| 34 | private function isWeekend($datetime) { |
||
| 37 | } |
||
| 38 |