Conditions | 3 |
Paths | 3 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
49 | public function next() |
||
50 | { |
||
51 | if (null === $this->current) { |
||
52 | $this->current = $this->getFactory()->createMinute($this->begin); |
||
53 | } else { |
||
54 | $this->current = $this->current->getNext(); |
||
55 | if (!$this->contains($this->current->getBegin())) { |
||
56 | $this->current = null; |
||
57 | } |
||
58 | } |
||
59 | } |
||
60 | |||
114 |