Passed
Pull Request — master (#1)
by ANTHONIUS
01:34
created
src/Modules/WithContainer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
 
98 98
     protected static function initContainer(): void
99 99
     {
100
-        $container                  = static::$container;
100
+        $container = static::$container;
101 101
         \assert(null !== $container);
102 102
 
103 103
         /** @var Application|null $app */
Please login to merge, or discard this patch.
src/Modules/WithConfigurationFile.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
      */
74 74
     final protected static function loadPipelineFromFile(): callable
75 75
     {
76
-        $pipelineFile =  static::$configDir.'/'.static::$pipelineFilename;
76
+        $pipelineFile = static::$configDir.'/'.static::$pipelineFilename;
77 77
 
78 78
         if ( ! is_file($pipelineFile) || ! is_readable($pipelineFile)) {
79 79
             throw WithConfigurationException::pipelineFileNotExists(static::$configDir, static::$pipelineFilename);
Please login to merge, or discard this patch.
src/Modules/WithLaminasServiceManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,6 +26,6 @@
 block discarded – undo
26 26
         $deps['services']['config'] = $config;
27 27
 
28 28
         \assert(\is_array($deps));
29
-        static::$container         = new ServiceManager($deps);
29
+        static::$container = new ServiceManager($deps);
30 30
     }
31 31
 }
Please login to merge, or discard this patch.