In PhpWord/Section/Table/Cell.php
//Add this at the end of class PHPWord_Section_Table_Cell
//Add this at the end of class PHPWord_Section_Table_Cell
public function addTable($style = null) {
$table = new PHPWord_Section_Table('table', $this->_pCount, $style);
$this->_elementCollection[] = $table;
return $table;
}
Thanks