瀏覽代碼

Merge pull request #89 from mpociot/analysis-8jDm69

Applied fixes from StyleCI
Marcel Pociot 8 年之前
父節點
當前提交
b12ac97c6a
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/Mpociot/ApiDoc/Generators/AbstractGenerator.php

+ 1 - 1
src/Mpociot/ApiDoc/Generators/AbstractGenerator.php

@@ -235,7 +235,7 @@ abstract class AbstractGenerator
                 $attributeData['description'][] = Description::parse($rule)->with($parameters)->getDescription();
                 break;
             case 'between':
-                if (!isset($attributeData['type'])) {
+                if (! isset($attributeData['type'])) {
                     $attributeData['type'] = 'numeric';
                 }
                 $attributeData['description'][] = Description::parse($rule)->with($parameters)->getDescription();