Box\Spout\Writer\XLSX\Helper\FileSystemHelper::createRelsFolderAndFile PHP Method

createRelsFolderAndFile() protected method

Creates the "_rels" folder under the root folder as well as the ".rels" file in it
protected createRelsFolderAndFile ( ) : FileSystemHelper
return FileSystemHelper
    protected function createRelsFolderAndFile()
    {
        $this->relsFolder = $this->createFolder($this->rootFolder, self::RELS_FOLDER_NAME);
        $this->createRelsFile();
        return $this;
    }