types = explode('|', $matches[1]); if (isset($matches[2])) { $this->description = trim(preg_replace('#\s+#', ' ', $matches[2])); } } /** * @return string * @deprecated 2.0.4 use getTypes instead */ public function getType() { if (empty($this->types)) { return ''; } return $this->types[0]; } public function getTypes() { return $this->types; } /** * @return string */ public function getDescription() { return $this->description; } }