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

createDocPropsFolderAndFiles() protected method

Creates the "docProps" folder under the root folder as well as the "app.xml" and "core.xml" files in it
protected createDocPropsFolderAndFiles ( ) : FileSystemHelper
return FileSystemHelper
    protected function createDocPropsFolderAndFiles()
    {
        $this->docPropsFolder = $this->createFolder($this->rootFolder, self::DOC_PROPS_FOLDER_NAME);
        $this->createAppXmlFile();
        $this->createCoreXmlFile();
        return $this;
    }