Completed
Push — develop ( 32e652...cf44cf )
by Neomerx
01:41
created
src/Packages/Cors/CorsContainerConfigurator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/Packages/Application/WhoopsContainerConfigurator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Packages/Application/Application.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.