@@ -39,7 +39,7 @@ |
||
39 | 39 | */ |
40 | 40 | public static function configureContainer(LimoncelloContainerInterface $container): void |
41 | 41 | { |
42 | - $container[AnalyzerInterface::class] = function (PsrContainerInterface $container) { |
|
42 | + $container[AnalyzerInterface::class] = function(PsrContainerInterface $container) { |
|
43 | 43 | $settingsProvider = $container->get(SettingsProviderInterface::class); |
44 | 44 | $appSettings = $settingsProvider->get(A::class); |
45 | 45 | $corsSettings = $settingsProvider->get(C::class); |
@@ -36,7 +36,7 @@ |
||
36 | 36 | public static function configureContainer(LimoncelloContainerInterface $container): void |
37 | 37 | { |
38 | 38 | $container[ThrowableHandlerInterface::class] = |
39 | - function (PsrContainerInterface $container): ThrowableHandlerInterface { |
|
39 | + function(PsrContainerInterface $container): ThrowableHandlerInterface { |
|
40 | 40 | return new WhoopsThrowableHandler(); |
41 | 41 | }; |
42 | 42 | } |
@@ -92,7 +92,7 @@ |
||
92 | 92 | |
93 | 93 | $routeConfigurators = []; |
94 | 94 | if (empty($method) === false && empty($path) === false) { |
95 | - list(, , , , , $routeConfigurators) = $this->initRouter($coreSettings)->match($method, $path); |
|
95 | + list(,,,,, $routeConfigurators) = $this->initRouter($coreSettings)->match($method, $path); |
|
96 | 96 | } |
97 | 97 | |
98 | 98 | // configure container |