فهرست منبع

Applied fixes from StyleCI

Marcel Pociot 8 سال پیش
والد
کامیت
4e7061b4c5
1فایلهای تغییر یافته به همراه3 افزوده شده و 3 حذف شده
  1. 3 3
      tests/GenerateDocumentationTest.php

+ 3 - 3
tests/GenerateDocumentationTest.php

@@ -77,11 +77,11 @@ class GenerateDocumentationTest extends TestCase
 
         $this->artisan('api:generate', [
             '--routePrefix' => 'api/*',
-            '--bindings' => 'foo,bar'
+            '--bindings' => 'foo,bar',
         ]);
-        
+
         $generatedMarkdown = file_get_contents(__DIR__.'/../public/docs/source/index.md');
-        
+
         $this->assertContains('Not in: `bar`', $generatedMarkdown);
     }