getDesc() публичный Метод

Get the docblock description
public getDesc ( ) : string
Результат string
Пример #1
0
 /**
  * Get the property description
  *
  * @return string
  */
 public function getDesc()
 {
     $desc = null;
     if (null !== $this->docblock) {
         $desc = $this->docblock->getDesc();
     }
     return $desc;
 }