Jyxo\Svn\Result::current PHP Méthode

current() public méthode

Returns an item on the actual pointer position.
public current ( ) : mixed
Résultat mixed
    public function current()
    {
        if ($this->valid()) {
            return $this->items[$this->pointer];
        }
        return null;
    }