1*a1a3b679SAndreas Boehler<?php 2*a1a3b679SAndreas Boehler 3*a1a3b679SAndreas Boehlernamespace Sabre\VObject; 4*a1a3b679SAndreas Boehler 5*a1a3b679SAndreas Boehleruse Sabre\VObject\Recur\EventIterator; 6*a1a3b679SAndreas Boehler 7*a1a3b679SAndreas Boehler/** 8*a1a3b679SAndreas Boehler * RecurrenceIterator 9*a1a3b679SAndreas Boehler * 10*a1a3b679SAndreas Boehler * This class is deprecated. Use Sabre\VObject\Recur\EventIterator instead. 11*a1a3b679SAndreas Boehler * This class will be removed from a future version. 12*a1a3b679SAndreas Boehler * 13*a1a3b679SAndreas Boehler * @copyright Copyright (C) 2011-2015 fruux GmbH (https://fruux.com/). 14*a1a3b679SAndreas Boehler * @author Evert Pot (http://evertpot.com/) 15*a1a3b679SAndreas Boehler * @deprecated 16*a1a3b679SAndreas Boehler * @license http://sabre.io/license Modified BSD License 17*a1a3b679SAndreas Boehler */ 18*a1a3b679SAndreas Boehlerclass RecurrenceIterator extends EventIterator { 19*a1a3b679SAndreas Boehler 20*a1a3b679SAndreas Boehler 21*a1a3b679SAndreas Boehler} 22