Пример #1
0
 /**
  * Return the first line of the commit message.
  * @return string
  */
 public function SubjectMessage()
 {
     if ($this->subjectMessage == null) {
         $this->subjectMessage = $this->commit->getSubjectMessage();
     }
     return $this->subjectMessage;
 }
 /**
  * Return the first line of the commit message.
  * @return string
  */
 public function SubjectMessage()
 {
     if ($this->subjectMessage == null) {
         $this->subjectMessage = $this->commit->getSubjectMessage();
     }
     return htmlentities($this->subjectMessage);
 }