Passed
Push — dependabot/composer/infection/... ( 7bd18f )
by
unknown
02:16
created
src/CompositeContextContainer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
             $this->containers[$context] = [
74 74
                 $container
75 75
             ];
76
-            uksort($this->containers, static function ($a, $b) {
76
+            uksort($this->containers, static function($a, $b) {
77 77
                 return mb_strlen($b) <=> mb_strlen($a);
78 78
             });
79 79
         }
Please login to merge, or discard this patch.
src/Contracts/DeferredServiceProviderInterface.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     public function hasDefinitionFor(string $id): bool;
19 19
 
20 20
     /**
21
-      * @return string[] a list of IDs of services provided
22
-      */
21
+     * @return string[] a list of IDs of services provided
22
+     */
23 23
     public function provides(): array;
24 24
 }
Please login to merge, or discard this patch.
src/Container.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@
 block discarded – undo
128 128
     protected function setMultiple(array $config): void
129 129
     {
130 130
         foreach ($config as $id => $definition) {
131
-            $this->set((string)$id, $definition);
131
+            $this->set((string) $id, $definition);
132 132
         }
133 133
     }
134 134
 
Please login to merge, or discard this patch.