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

__construct() 공개 메소드

constructor
public __construct ( array $children )
$children array
    public function __construct(array $children)
    {
        $this->children = $children;
        if (vfsStream::useDotfiles()) {
            array_unshift($this->children, new DotDirectory('.'), new DotDirectory('..'));
        }
        reset($this->children);
    }