@@ -73,7 +73,7 @@ |
||
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 | } |
@@ -127,7 +127,7 @@ |
||
127 | 127 | private function setMultiple(array $config): void |
128 | 128 | { |
129 | 129 | foreach ($config as $id => $definition) { |
130 | - $this->set((string)$id, $definition); |
|
130 | + $this->set((string) $id, $definition); |
|
131 | 131 | } |
132 | 132 | } |
133 | 133 |
@@ -11,7 +11,7 @@ |
||
11 | 11 | interface DeferredServiceProviderInterface extends ServiceProviderInterface |
12 | 12 | { |
13 | 13 | /** |
14 | - * @return string[] a list of IDs of services provided |
|
15 | - */ |
|
14 | + * @return string[] a list of IDs of services provided |
|
15 | + */ |
|
16 | 16 | public function provides(): array; |
17 | 17 | } |