1 | <?php |
||
20 | class CoarseChecker |
||
21 | { |
||
22 | |||
23 | /** |
||
24 | * Check if file contains annotations, |
||
25 | * by checking if it contains @[A-Z] regular expression. |
||
26 | * |
||
27 | * It does not ensure that file really contains anniotations. |
||
28 | * |
||
29 | * @param string|Reflector|object $entity |
||
30 | * @return bool |
||
31 | */ |
||
32 | 46 | public static function mightHaveAnnotations($entity) |
|
63 | |||
64 | } |
||
65 |