| 1 | <?php |
||
| 12 | class ExcludeDaysOfWeekConstraint implements DatetimeConstraintInterface, RecurrenceConstraintInterface |
||
| 13 | { |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @var array |
||
| 17 | */ |
||
| 18 | private $excludedDays = []; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param array $excludedDays |
||
| 22 | */ |
||
| 23 | public function __construct(array $excludedDays = []) |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @param Recurrence $recurrence |
||
| 46 | * @param \Datetime $datetime |
||
| 47 | * @return \Datetime |
||
| 48 | */ |
||
| 49 | public function apply(Recurrence $recurrence, \Datetime $datetime) |
||
| 57 | } |
||
| 58 |