diff --git a/src/Mpociot/ApiDoc/Generators/AbstractGenerator.php b/src/Mpociot/ApiDoc/Generators/AbstractGenerator.php index 4fc8b87a..7cb70eb5 100644 --- a/src/Mpociot/ApiDoc/Generators/AbstractGenerator.php +++ b/src/Mpociot/ApiDoc/Generators/AbstractGenerator.php @@ -235,7 +235,7 @@ protected function parseRule($rule, $ruleName, &$attributeData, $seed) $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();