org\bovigo\vfs\vfsStreamContainerIterator::current PHP 메소드

current() 공개 메소드

returns the current child
public current ( ) : org\bovigo\vfs\vfsStreamContent
리턴 org\bovigo\vfs\vfsStreamContent
    public function current()
    {
        $child = current($this->children);
        if (false === $child) {
            return null;
        }
        return $child;
    }