I am trying to set the worksheet "Properties" when creating a spreadsheet with PHPSpreadsheet. All fields are working with the code below EXCEPT for setCompany. When I look at the resulting worksheet properties, that field states "Specify the company" so, clearly, PHPSpreadsheet is not updating that field even though all the others are updating properly. Any ideas on how to fix this?
$spreadsheet->getProperties()
->setCreator("CPS Report Generator") // Excel Properties: "Author"
->setLastModifiedBy("CPS Report Generator") // Excel Properties: "Last Modified By"
->setCompany("CPS Inc.")
->setTitle($prop_title) // Excel Properties: "Title"
->setSubject("CPS Report Generator Export Facility") // Excel Extended Properties: "Subject"
->setDescription("Report from CPS") // Excel Extended Properties: "Comments"
->setKeywords($prop_tags) // Excel Properties: "Tags"
->setCategory($prop_categories); // Excel Properties: "Categories"
In the PHPSpreadsheet help docs, it lists setCompany as an option so I am stymied.