| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 27 | class Config implements ConfigInterface |
||
| 28 | { |
||
| 29 | /** |
||
| 30 | * Define params, setters, and services before the Container is locked. |
||
| 31 | * |
||
| 32 | * @param Container $container The DI container. |
||
| 33 | */ |
||
| 34 | 1 | public function define(Container $container): void |
|
| 36 | 1 | } |
|
| 37 | |||
| 38 | /** |
||
| 39 | * Modify service objects after the Container is locked. |
||
| 40 | * |
||
| 41 | * @param Container $container The DI container. |
||
| 42 | */ |
||
| 43 | 1 | public function modify(Container $container): void |
|
| 47 |