_listType = PHPWord_Style_ListItem::TYPE_BULLET_FILLED; } /** * Set style value * * @param string $key * @param string $value */ public function setStyleValue($key, $value) { $this->$key = $value; } /** * Set List Type * * @param int $pValue */ public function setListType($pValue = PHPWord_Style_ListItem::TYPE_BULLET_FILLED) { $this->_listType = $pValue; } /** * Get List Type */ public function getListType() { return $this->_listType; } } ?>