org\bovigo\vfs\vfsStreamDirectory::__construct PHP Метод

__construct() публичный Метод

constructor
public __construct ( string $name, integer $permissions = null )
$name string
$permissions integer optional
    public function __construct($name, $permissions = null)
    {
        if (strstr($name, '/') !== false) {
            throw new vfsStreamException('Directory name can not contain /.');
        }
        $this->type = vfsStreamContent::TYPE_DIR;
        parent::__construct($name, $permissions);
    }