Total Complexity | 5 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Coverage | 80% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | final class RemoteProvider implements RemoteProviderInterface |
||
12 | { |
||
13 | /** @var RemoteProviderInterface[] */ |
||
14 | private $providers; |
||
15 | |||
16 | /** |
||
17 | * @param RemoteProviderInterface[] $providers |
||
18 | */ |
||
19 | 3 | public function __construct(array $providers) |
|
22 | 3 | } |
|
23 | |||
24 | public function isAllowedUri(string $uri): bool |
||
27 | } |
||
28 | |||
29 | 3 | public function fetch(string $uri): array |
|
48 |