lithium\data\entity\Document::rewind PHP Méthode

rewind() public méthode

Rewinds to the first item.
public rewind ( ) : mixed
Résultat mixed The current item after rewinding.
    public function rewind()
    {
        reset($this->_data);
        reset($this->_updated);
        $this->_valid = count($this->_updated) > 0;
        return current($this->_updated);
    }