Passed
Push — main ( 5b0d21...818e8f )
by Thierry
12:14
created
src/ContainerWrapper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
     /**
12 12
      * @var ContainerInterface|null
13 13
      */
14
-    private static ContainerInterface|null $container = null;
14
+    private static ContainerInterface | null $container = null;
15 15
 
16 16
     /**
17 17
      * @param ContainerInterface $container
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
      */
22 22
     public static function setContainer(ContainerInterface $container, bool $overwrite = true): void
23 23
     {
24
-        if($overwrite || self::$container === null)
24
+        if ($overwrite || self::$container === null)
25 25
         {
26 26
             self::$container = $container;
27 27
         }
Please login to merge, or discard this patch.