Esempio n. 1
0
 protected function getTrimmedAnnotations(ReflectionBase $object)
 {
     //@BUG For some reason long_description and short_description have whitespace in the character keys
     $annotations = [];
     foreach ($object->getAnnotations() as $_id => $_value) {
         //echo $directory;
         $annotations[trim($_id)] = $_value;
     }
     return $annotations;
 }