@@ -115,7 +115,7 @@ |
||
115 | 115 | |
116 | 116 | private function removeDevPackages(): void |
117 | 117 | { |
118 | - if (! defined('VENDOR_PATH')) { |
|
118 | + if (!defined('VENDOR_PATH')) { |
|
119 | 119 | return; |
120 | 120 | } |
121 | 121 |
@@ -281,7 +281,7 @@ discard block |
||
281 | 281 | public static function locator(bool $shared = true): LocatorInterface |
282 | 282 | { |
283 | 283 | if ($shared) { |
284 | - if (! isset(static::$instances[Locator::class])) { |
|
284 | + if (!isset(static::$instances[Locator::class])) { |
|
285 | 285 | $locator = new Locator(static::autoloader()); |
286 | 286 | if (true === config('optimize.locator_cache_enabled', false)) { |
287 | 287 | static::$instances[Locator::class] = new LocatorCached($locator, new FileVarExportHandler()); |
@@ -618,7 +618,7 @@ discard block |
||
618 | 618 | |
619 | 619 | protected static function cacheServices(): void |
620 | 620 | { |
621 | - if (! static::$discovered) { |
|
621 | + if (!static::$discovered) { |
|
622 | 622 | $locator = static::locator(); |
623 | 623 | $files = $locator->search('Config/Services'); |
624 | 624 |