Lines Matching +full:- +full:- +full:summary
13 protected $summary = ''; variable in dokuwiki\\Remote\\OpenApiDoc\\DocBlock
30 $this->reflector = $reflector;
31 $docblock = $reflector->getDocComment();
51 // what remains is summary and description
52 [$summary, $description] = sexplode("\n\n", $docblock, 2, '');
55 $this->summary = trim($summary);
56 $this->description = trim($description);
57 $this->tags = $tags;
67 return $this->reflector->getDeclaringClass()->getName();
77 return $this->summary;
87 return $this->description;
97 return $this->tags;
108 if (!isset($this->tags[$tag])) return [];
109 return $this->tags[$tag];