Total Complexity | 5 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | final class UseStatements extends BaseUseStatements |
||
15 | { |
||
16 | /** |
||
17 | * Retrieve all the use statements. |
||
18 | * |
||
19 | * @return array<string, class-string> |
||
|
|||
20 | */ |
||
21 | 1 | public function all(): array |
|
26 | 1 | ]; |
|
27 | } |
||
28 | |||
29 | /** |
||
30 | * Retrieve the use statements from the method annotations. |
||
31 | * |
||
32 | * @return array<string, class-string> |
||
33 | */ |
||
34 | 1 | public function fromMethodAnnotations(): array |
|
49 |