| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 12 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 31 | public function runAndCollect(callable $f) | ||
| 32 |     { | ||
| 33 | $before = get_included_files(); | ||
| 34 | $ret = $f(); | ||
| 35 | $after = get_included_files(); | ||
| 36 | |||
| 37 | $included = array_diff($after, $before); | ||
| 38 | |||
| 39 | $this->included_files = array_values(array_unique(array_merge($this->included_files, $included))); | ||
| 40 | |||
| 41 | return $ret; | ||
| 42 | } | ||
| 43 | |||
| 56 | 
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.