@@ -8,7 +8,7 @@ |
||
8 | 8 | Route::prefix($prefix) |
9 | 9 | ->namespace('\Mpociot\ApiDoc\Http') |
10 | 10 | ->middleware($middleware) |
11 | - ->group(function () { |
|
11 | + ->group(function() { |
|
12 | 12 | Route::get('/', 'Controller@html')->name('apidoc'); |
13 | 13 | Route::get('.json', 'Controller@json')->name('apidoc.json'); |
14 | 14 | }); |
@@ -18,7 +18,7 @@ |
||
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 | }); |