type = $type; $this->text = $text; } /** * Gets the type of this message. * * @return string The type of this message (ex: 'DEBUG'). */ public function getType() { return $this->type; } /** * Gets the text of this message. * * @return string The text of this message. */ public function getText() { return $this->text; } }