| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | class BoltContainerConfiguration |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * Configuration for Bolt. |
||
| 17 | * |
||
| 18 | * @return array |
||
| 19 | */ |
||
| 20 | 5 | public static function default() |
|
| 23 | } |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Create a container instance. |
||
| 27 | * |
||
| 28 | * @param array $config The configuration array. |
||
| 29 | * @return Container |
||
| 30 | */ |
||
| 31 | 5 | public static function createContainer(array $config = []): Container |
|
| 36 |