Total Complexity | 4 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class GuzzleServerRequestServiceProvider extends AbstractLeagueServiceFactory |
||
11 | { |
||
12 | protected function id(): string |
||
13 | { |
||
14 | return 'server_request'; |
||
15 | } |
||
16 | |||
17 | protected function types(): array |
||
18 | { |
||
19 | return [ServerRequestInterface::class]; |
||
20 | } |
||
21 | |||
22 | protected function factory(): ServiceFactoryInterface |
||
25 | } |
||
26 | |||
27 | protected function shared(): ?bool |
||
32 |