| @@ -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 | } | 
| @@ -18,7 +18,7 @@ | ||
| 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 | } | 
| @@ -130,7 +130,7 @@ | ||
| 130 | 130 |              if (!is_string($id)) { | 
| 131 | 131 |                  throw new InvalidConfigException('Key must be a string'); | 
| 132 | 132 | } | 
| 133 | - $this->set((string)$id, $definition); | |
| 133 | + $this->set((string) $id, $definition); | |
| 134 | 134 | } | 
| 135 | 135 | } | 
| 136 | 136 | |