textObject = new Text($text, $styleFont, $styleParagraph); $this->depth = $depth; $this->style = $this->setStyle(new ListItemStyle(), $styleList, true); } /** * Get ListItem style */ public function getStyle() { return $this->style; } /** * Get ListItem TextRun */ public function getTextObject() { return $this->textObject; } /** * Get ListItem depth */ public function getDepth() { return $this->depth; } }