Passed
Branch main (7e2028)
by Thierry
12:35
created
Category
src/AbstractFacade.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
      */
44 44
     private static function _getServiceWithLocator(string $serviceId)
45 45
     {
46
-        if(self::$locator === null || !self::$locator->has($serviceId))
46
+        if (self::$locator === null || !self::$locator->has($serviceId))
47 47
         {
48 48
             return null;
49 49
         }
@@ -80,11 +80,11 @@  discard block
 block discarded – undo
80 80
      */
81 81
     public static function __callStatic($method, $arguments)
82 82
     {
83
-        if(static::$service === null)
83
+        if (static::$service === null)
84 84
         {
85 85
             $serviceId = static::getServiceIdentifier();
86 86
             static::$service = self::_getServiceWithContainer($serviceId);
87
-            if(static::$service === null)
87
+            if (static::$service === null)
88 88
             {
89 89
                 static::$service = self::_getServiceWithLocator($serviceId);
90 90
             }
Please login to merge, or discard this patch.