From 93887c205517ab9625de494215df4b03b3634c8d Mon Sep 17 00:00:00 2001 From: Marcel Pociot Date: Fri, 26 Aug 2016 20:48:58 +0000 Subject: [PATCH] Applied fixes from StyleCI --- src/Mpociot/ApiDoc/Generators/AbstractGenerator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();