I am creating a list and adding it as a ml fragment like so:
$myCarsList = $docx->addList($carsList, array('rawWordML' => true, 'val' => 1, 'font' => 'Times New Roman'));
$entityfragments[] = $docx->createWordMLFragment(array($myCarsList));
And displaying this fragment in a table. How do I use Createliststyle to provide a custom style to the list I am creating?
Thanks