Completed
Push — master ( 0f1132...7b926e )
by
unknown
14s queued 11s
created
src/ApiDoc.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
         Route::prefix($path)
19 19
             ->namespace('\Mpociot\ApiDoc\Http')
20 20
             ->middleware(static::middleware())
21
-            ->group(function () {
21
+            ->group(function() {
22 22
                 Route::get('/', 'Controller@html')->name('apidoc');
23 23
                 Route::get('.json', 'Controller@json')->name('apidoc.json');
24 24
             });
Please login to merge, or discard this patch.
routes/laravel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 
8 8
 Route::namespace('\Mpociot\ApiDoc\Http')
9 9
     ->middleware($middleware)
10
-    ->group(function () use ($prefix) {
10
+    ->group(function() use ($prefix) {
11 11
         Route::get($prefix, 'Controller@html')->name('apidoc');
12 12
         Route::get("$prefix.json", 'Controller@json')->name('apidoc.json');
13 13
     });
Please login to merge, or discard this patch.