瀏覽代碼

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);
     }