Exemple #1
0
 /**
  * Sets the calendar repeat exceptions.
  *
  * @param $calendarItemData
  * @param CalendarItem $calendarItem
  */
 protected function setRepeatExceptions($calendarItemData, CalendarItem $calendarItem)
 {
     $data = $this->getData('EXDATE', $calendarItemData);
     foreach ($data as $line) {
         $date = $this->createDate($line);
         $calendarItem->addRepeatException($date);
     }
 }