| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 25 | final class HttpPlugHandlerFactory |
||
| 26 | { |
||
| 27 | /** |
||
| 28 | * @param ContainerInterface $container |
||
| 29 | * |
||
| 30 | * @return HttpPlugHandler |
||
| 31 | */ |
||
| 32 | 2 | public function __invoke(ContainerInterface $container): HttpPlugHandler |
|
| 37 | } |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @param HttpClient $client |
||
| 41 | * |
||
| 42 | * @return HttpPlugHandler |
||
| 43 | */ |
||
| 44 | 1 | public function fromHttpPlugClient(HttpClient $client): HttpPlugHandler |
|
| 49 |