Passed
Pull Request — master (#145)
by Sergei
23:16 queued 11:30
created
src/AssetRegistrar.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -268,7 +268,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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)) {
Please login to merge, or discard this patch.
config/di.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
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),
Please login to merge, or discard this patch.
rector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
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',
Please login to merge, or discard this patch.