Exemplo n.º 1
1
 /**
  * Returns description for method
  * @return string
  */
 public function description()
 {
     if (method_exists($this->action, 'description')) {
         return $this->action->description();
     }
     return $this->docBlock ? $this->docBlock->getShortDescription() : '';
 }