When we try to adjust properties on a document we've created via template the properties don't take.
$docx = new CreateDocx();
$docx->addTemplate('template.docx');
....
$docx->addProperties($properties);
$docx->createDocx('blah.docx');
That results in a document with the same properties as the template, so the addProperties hasn't changed anything.