/**
  * @param $text
  * @param null $type
  * @param null $userPk
  */
 public function addComment($text, $type = null, $userPk = null)
 {
     Comment::add(get_class($this->owner), $this->owner->id, $text, $type, $userPk);
 }