Passed
Push — main ( dbf00b...97749d )
by Dimitri
02:05 queued 17s
created
src/Cli/Commands/Utilities/Optimize.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -115,7 +115,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Container/Services.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -281,7 +281,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.