Extends
lithium\core\Object
Move forwards to the next item.
Returns
The current item after moving.Source
public function next() {
$this->_valid = !(next($this->_data) === false && key($this->_data) === null);
return current($this->_data);
}