소스 검색

Apply fixes from StyleCI

Marcel Pociot 6 년 전
부모
커밋
18ed04cc86
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/*',