| Total Complexity | 3 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | abstract class AbstractConfigGacela |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @return array<array>|array{ |
||
|
|
|||
| 13 | * type?:string, |
||
| 14 | * path?:string, |
||
| 15 | * path_local?:string |
||
| 16 | * } |
||
| 17 | */ |
||
| 18 | 6 | public function config(): array |
|
| 19 | { |
||
| 20 | 6 | return []; |
|
| 21 | } |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @return array<string,ConfigReaderInterface> |
||
| 25 | */ |
||
| 26 | 7 | public function configReaders(): array |
|
| 29 | } |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @param array<string,mixed> $globalServices |
||
| 33 | * |
||
| 34 | * @return array<class-string,class-string|callable> |
||
| 35 | */ |
||
| 36 | 1 | public function mappingInterfaces(array $globalServices): array |
|
| 41 |