setInput($jcalWithUntil); $vcalendar = $parser->parse(); $eventAsArray = $vcalendar->select('VEVENT'); $event = reset($eventAsArray); $rruleAsArray = $event->select('RRULE'); $rrule = reset($rruleAsArray); $this->assertNotNull($rrule); $this->assertEquals($rrule->getValue(), 'FREQ=MONTHLY;UNTIL=20160101T220000Z'); } }