浏览代码

Style-ci fixes

Marnu Lombard 5 年之前
父节点
当前提交
634da1cc4e
共有 1 个文件被更改,包括 1 次插入1 次删除
  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();