Jyxo\Svn\Result::current PHP 메소드

current() 공개 메소드

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