Selaa lähdekoodia

Merge pull request #341 from mpociot/analysis-zYJNZd

Apply fixes from StyleCI
Marcel Pociot 6 vuotta sitten
vanhempi
commit
ebbcda6316
1 muutettua tiedostoa jossa 4 lisäystä ja 4 poistoa
  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/*',