Completed
Push — master ( 5862b1...135101 )
by Tom
21s
created
src/League/ApplicationConfigServiceProvider.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -32,10 +32,10 @@  discard block
 block discarded – undo
32 32
     ) {
33 33
         Assertion::string($prefix);
34 34
 
35
-        $this->identifier = self::class . ($prefix !== '' ? $prefix : uniqid());
35
+        $this->identifier = self::class.($prefix !== '' ? $prefix : uniqid());
36 36
         $this->prefix   = $prefix;
37 37
         $this->provides = array_merge(array_map(
38
-            fn (int|string $key): string => $this->keyPrefix() . $key,
38
+            fn (int | string $key): string => $this->keyPrefix().$key,
39 39
             $this->applicationConfig->getKeys()
40 40
         ), [$this->prefix]);
41 41
     }
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
                 continue;
60 60
             }
61 61
 
62
-            $this->container?->addShared($prefix . $key, fn (): mixed => $value);
62
+            $this->container?->addShared($prefix.$key, fn (): mixed => $value);
63 63
         }
64 64
     }
65 65
 
@@ -69,6 +69,6 @@  discard block
 block discarded – undo
69 69
             return '';
70 70
         }
71 71
 
72
-        return $this->prefix . $this->applicationConfig->getSeparator();
72
+        return $this->prefix.$this->applicationConfig->getSeparator();
73 73
     }
74 74
 }
Please login to merge, or discard this patch.