Pop\Code\Generator\DocblockGenerator::getDesc PHP Метод

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

Get the docblock description
public getDesc ( ) : string
Результат string
    public function getDesc()
    {
        return $this->desc;
    }

Usage Example

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