| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | final class AnnotationMetadataMother |
||
| 11 | { |
||
| 12 | public static function example() : AnnotationMetadata |
||
| 13 | { |
||
| 14 | return new AnnotationMetadata( |
||
| 15 | 'foo', |
||
| 16 | new AnnotationTarget(AnnotationTarget::TARGET_ALL), |
||
| 17 | false, |
||
| 18 | [] |
||
| 19 | ); |
||
| 20 | } |
||
| 21 | |||
| 22 | public static function withTarget(AnnotationTarget $target) : AnnotationMetadata |
||
| 29 | ); |
||
| 30 | } |
||
| 32 |