Conditions | 3 |
Paths | 3 |
Total Lines | 15 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
1 | <?php |
||
40 | public function next() |
||
41 | { |
||
42 | $this->eventsIterator->next(); |
||
43 | $this->currentKey++; |
||
44 | if ($this->eventsIterator->valid()) { |
||
45 | return; |
||
46 | } |
||
47 | |||
48 | $this->feedIterator->next(); |
||
49 | if ($this->feedIterator->valid()) { |
||
50 | $this->eventsIterator = $this->newEventsIterator(); |
||
51 | } else { |
||
52 | $this->feedIterator = null; |
||
53 | } |
||
54 | } |
||
55 | |||
91 |