Browse Source

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

Applied fixes from StyleCI
Marcel Pociot 8 năm trước cách đây
mục cha
commit
b12ac97c6a
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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();