| Total Complexity | 3 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class SlimRouterServiceProvider extends AbstractLeagueServiceFactory |
||
| 11 | { |
||
| 12 | protected function id(): string |
||
| 13 | { |
||
| 14 | return 'router'; |
||
| 15 | } |
||
| 16 | |||
| 17 | protected function types(): array |
||
| 18 | { |
||
| 19 | return [RouteCollectorProxyInterface::class]; |
||
| 20 | } |
||
| 21 | |||
| 22 | protected function factory(): ServiceFactoryInterface |
||
| 25 | } |
||
| 26 | } |
||
| 27 |