Conditions | 3 |
Paths | 3 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
87 | public function next() |
||
88 | { |
||
89 | if (null === $this->current) { |
||
90 | $this->current = $this->getFactory()->createHour($this->begin); |
||
91 | } else { |
||
92 | $this->current = $this->current->getNext(); |
||
93 | if (!$this->contains($this->current->getBegin())) { |
||
94 | $this->current = null; |
||
95 | } |
||
96 | } |
||
97 | } |
||
98 | |||
124 |