My workaround is to use a template that has all the formats I need.
$PHPWord = new PHPWord();
$document = $PHPWord->loadTemplate('Template.docx');
$document->setValue('XXXX', 'Sun');
$document->save('doc.docx');
$PHPWord = new PHPWord();
$document = $PHPWord->loadTemplate('Template.docx');
$document->setValue('XXXX', 'Sun');
$document->save('doc.docx');