Neos\Flow\ResourceManagement\Streams\ResourceStreamWrapper::rewindDirectory PHP 메소드

rewindDirectory() 공개 메소드

This method is called in response to rewinddir(). Should reset the output generated by dir_readdir(). I.e.: The next call to dir_readdir() should return the first entry in the location returned by dir_opendir().
public rewindDirectory ( ) : boolean
리턴 boolean always TRUE
    public function rewindDirectory()
    {
        rewinddir($this->handle);
        return true;
    }