Total Complexity | 4 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class FormRepositoryServiceProvider extends AbstractLeagueServiceFactory |
||
11 | { |
||
12 | protected function id(): string |
||
13 | { |
||
14 | return 'forms'; |
||
15 | } |
||
16 | |||
17 | protected function types(): array |
||
18 | { |
||
19 | return [FormRepositoryInterface::class]; |
||
20 | } |
||
21 | |||
22 | protected function aliases(): array |
||
23 | { |
||
24 | return ['form_repository', 'formRepository']; |
||
25 | } |
||
26 | |||
27 | protected function factory(): ServiceFactoryInterface |
||
30 | } |
||
31 | } |
||
32 |