@@ -43,6 +43,9 @@ discard block |
||
| 43 | 43 | self::$parsedFiles = []; |
| 44 | 44 | } |
| 45 | 45 | |
| 46 | + /** |
|
| 47 | + * @param Reflector $reflection |
|
| 48 | + */ |
|
| 46 | 49 | public function get($reflection) |
| 47 | 50 | { |
| 48 | 51 | if ($reflection instanceof ReflectionClass) |
@@ -142,6 +145,9 @@ discard block |
||
| 142 | 145 | return isset(self::$fields[$class][$field]) ? self::$fields[$class][$field] : false; |
| 143 | 146 | } |
| 144 | 147 | |
| 148 | + /** |
|
| 149 | + * @param string $fqn |
|
| 150 | + */ |
|
| 145 | 151 | private function processAnonymous(Reflector $reflection, $fqn) |
| 146 | 152 | { |
| 147 | 153 | if (!isset(self::$parsedFiles[$fqn])) |
@@ -322,6 +328,9 @@ discard block |
||
| 322 | 328 | return $fqn; |
| 323 | 329 | } |
| 324 | 330 | |
| 331 | + /** |
|
| 332 | + * @param integer $max |
|
| 333 | + */ |
|
| 325 | 334 | private function getString($tokens, &$i, $max) |
| 326 | 335 | { |
| 327 | 336 | do |