@@ -43,7 +43,7 @@ discard block |
||
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 |
||
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 | } |