Total Complexity | 2 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
29 | class ServiceProvider extends AbstractServiceProvider |
||
30 | { |
||
31 | /** |
||
32 | * The Service name. |
||
33 | * @var string |
||
34 | */ |
||
35 | protected $serviceName = 'url'; |
||
36 | |||
37 | /** |
||
38 | * {@inheritdoc} |
||
39 | * The URL component is used to generate all kind of urls in the application. |
||
40 | * |
||
41 | * @return void |
||
42 | */ |
||
43 | 7 | public function register(DiInterface $di): void |
|
57 |