@@ -268,7 +268,7 @@ discard block |
||
268 | 268 | * |
269 | 269 | * @throws InvalidConfigException |
270 | 270 | */ |
271 | - private function registerCssFile(AssetBundle $bundle, ?string $key, array|string $css): void |
|
271 | + private function registerCssFile(AssetBundle $bundle, ?string $key, array | string $css): void |
|
272 | 272 | { |
273 | 273 | if (is_array($css)) { |
274 | 274 | if (!array_key_exists(0, $css)) { |
@@ -348,7 +348,7 @@ discard block |
||
348 | 348 | * |
349 | 349 | * @throws InvalidConfigException |
350 | 350 | */ |
351 | - private function registerJsFile(AssetBundle $bundle, ?string $key, array|string $js): void |
|
351 | + private function registerJsFile(AssetBundle $bundle, ?string $key, array | string $js): void |
|
352 | 352 | { |
353 | 353 | if (is_array($js)) { |
354 | 354 | if (!array_key_exists(0, $js)) { |
@@ -47,7 +47,7 @@ |
||
47 | 47 | ], |
48 | 48 | ], |
49 | 49 | |
50 | - AssetManager::class => static function (ContainerInterface $container) use ($params): AssetManager { |
|
50 | + AssetManager::class => static function(ContainerInterface $container) use ($params): AssetManager { |
|
51 | 51 | $assetManager = new AssetManager( |
52 | 52 | $container->get(Aliases::class), |
53 | 53 | $container->get(AssetLoaderInterface::class), |
@@ -6,7 +6,7 @@ |
||
6 | 6 | use Rector\Config\RectorConfig; |
7 | 7 | use Rector\Set\ValueObject\LevelSetList; |
8 | 8 | |
9 | -return static function (RectorConfig $rectorConfig): void { |
|
9 | +return static function(RectorConfig $rectorConfig): void { |
|
10 | 10 | $rectorConfig->paths([ |
11 | 11 | __DIR__ . '/src', |
12 | 12 | __DIR__ . '/tests', |