1 | <?php |
||
7 | class AnnotationParser |
||
8 | { |
||
9 | /** |
||
10 | * Parses the doc comment and initilizes all the values of interest. |
||
11 | * |
||
12 | */ |
||
13 | public function parse(string $comment): Annotations |
||
31 | |||
32 | /** |
||
33 | * Parses an annotation line and stores the result in the MoufPhpDocComment. |
||
34 | * |
||
35 | * @param string $line |
||
36 | */ |
||
37 | private function parseAnnotation($line) |
||
47 | } |
||
48 |