Extends
lithium\core\Object
Rewinds to the first item.
Returns
mixed The current item after rewinding.Source
public function rewind() {
$this->_valid = !(reset($this->_data) === false && key($this->_data) === null);
return current($this->_data);
}