瀏覽代碼

Merge remote-tracking branch 'origin/master'

shalvah 6 年之前
父節點
當前提交
2f7e040daf
共有 1 個文件被更改,包括 4 次插入4 次删除
  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/*',