Test Failed
Push — master ( 350b34...338969 )
by Yaroslav
12:21
created
src/ColorBlock/ColorBlockSvg.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
                />
16 16
         </svg>
17 17
        ", 200, [
18
-           'Content-Type' => 'image/svg+xml',
19
-       ]);
18
+            'Content-Type' => 'image/svg+xml',
19
+        ]);
20 20
     }
21 21
 }
Please login to merge, or discard this patch.
src/LipsumManager.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -58,14 +58,14 @@
 block discarded – undo
58 58
         $namePrefix = $namePrefix ?? $this->app['config']['lorem-image.route.name_prefix'];
59 59
 
60 60
         Route::prefix($prefix)
61
-             ->as("{$namePrefix}.")
62
-             ->where([
63
-                 'extension' => '(' . implode('|', config('lorem-image.drivers.color-block.extensions')) . ')',
64
-             ])
65
-             ->group(function () {
66
-                 Route::get('color-block.{extension}', ColorBlockController::class)
67
-                      ->name('color-block');
68
-             });
61
+                ->as("{$namePrefix}.")
62
+                ->where([
63
+                    'extension' => '(' . implode('|', config('lorem-image.drivers.color-block.extensions')) . ')',
64
+                ])
65
+                ->group(function () {
66
+                    Route::get('color-block.{extension}', ColorBlockController::class)
67
+                        ->name('color-block');
68
+                });
69 69
     }
70 70
 
71 71
     /**
Please login to merge, or discard this patch.