Box\Spout\Writer\ODS\Helper\FileSystemHelper::createMetaInfoFolderAndFile PHP Method

createMetaInfoFolderAndFile() protected method

Creates the "META-INF" folder under the root folder as well as the "manifest.xml" file in it
protected createMetaInfoFolderAndFile ( ) : FileSystemHelper
return FileSystemHelper
    protected function createMetaInfoFolderAndFile()
    {
        $this->metaInfFolder = $this->createFolder($this->rootFolder, self::META_INF_FOLDER_NAME);
        $this->createManifestFile();
        return $this;
    }