Total Complexity | 10 |
Total Lines | 82 |
Duplicated Lines | 0 % |
Coverage | 89.29% |
Changes | 0 |
1 | <?php |
||
20 | public function include(self $other) : void; |
||
21 | |||
22 | /** |
||
23 | * @throws MetadataDoesNotExist |
||
24 | */ |
||
25 | public function get(string $name) : AnnotationMetadata; |
||
26 | |||
27 | public function has(string $name) : bool; |
||
28 | |||
29 | /** |
||
30 | * @return Traversable<AnnotationMetadata> |
||
31 | */ |
||
32 | public function getIterator() : Traversable; |
||
33 | |||
34 | public function count() : int; |
||
35 | } |
||
36 |