Parcourir la source

Style-ci fixes

Marnu Lombard il y a 5 ans
Parent
commit
634da1cc4e
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      src/Tools/Generator.php

+ 1 - 1
src/Tools/Generator.php

@@ -150,7 +150,7 @@ class Generator
 
                 $type = $this->normalizeParameterType($type);
                 list($description, $example) = $this->parseDescription($description, $type);
-                $value = is_null($example)  && ! $this->shouldExcludeExample($tag) ? $this->generateDummyValue($type) : $example;
+                $value = is_null($example) && ! $this->shouldExcludeExample($tag) ? $this->generateDummyValue($type) : $example;
 
                 return [$name => compact('type', 'description', 'required', 'value')];
             })->toArray();