Browse Source

Merge remote-tracking branch 'origin/master'

shalvah 6 năm trước cách đây
mục cha
commit
2f7e040daf
1 tập tin đã thay đổi với 4 bổ sung4 xóa
  1. 4 4
      tests/GenerateDocumentationTest.php

+ 4 - 4
tests/GenerateDocumentationTest.php

@@ -131,8 +131,8 @@ class GenerateDocumentationTest extends TestCase
     {
         RouteFacade::resource('/api/user', TestResourceController::class, [
             'only' => [
-                'index', 'create'
-            ]
+                'index', 'create',
+            ],
         ]);
         $output = $this->artisan('api:generate', [
             '--routePrefix' => 'api/*',
@@ -143,8 +143,8 @@ class GenerateDocumentationTest extends TestCase
 
         RouteFacade::apiResource('/api/user', TestResourceController::class, [
             'only' => [
-                'index', 'create'
-            ]
+                'index', 'create',
+            ],
         ]);
         $output = $this->artisan('api:generate', [
             '--routePrefix' => 'api/*',