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);
    }