Completed
Push — master ( ab3c83...b8b316 )
by Gregorio
03:56 queued 01:23
created
src/Controller.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 
18 18
         $data = $request->all();
19 19
 
20
-        array_walk($data, function (&$value) {
20
+        array_walk($data, function(&$value) {
21 21
             switch ($value) {
22 22
                 case is_object(json_decode($value)):
23 23
                     $value = json_decode($value);
Please login to merge, or discard this patch.
src/PreviewServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
                 $middleware = array_merge(config('preview.middleware'), explode(',', request('_middleware')));
32 32
             }
33 33
 
34
-            Route::group(['middleware' => $middleware], function () {
34
+            Route::group(['middleware' => $middleware], function() {
35 35
                 $route = trim(config('preview.route'), '\\');
36 36
                 Route::get($route.'/{view}', '\Gregoriohc\Preview\Controller@show')->name('_preview.show');
37 37
             });
Please login to merge, or discard this patch.