Lines Matching +full:- +full:m
30 $this->reflector = $reflector;
31 $docblock = $reflector->getDocComment();
35 ['/^[ \t]*\/\*+[ \t]*/m', '/[ \t]*\*+[ \t]*/m', '/\*+\/\s*$/m', '/\s*\/\s*$/m'],
42 if (preg_match_all('/^@(\w+)\s+(.*)$/m', $docblock, $matches, PREG_SET_ORDER)) {
49 $docblock = preg_replace('/^@(\w+)\s+(.*)$/m', '', $docblock);
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];