We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 322f7b1 commit c5f4a28Copy full SHA for c5f4a28
src/Builders/Paths/Operation/ParametersBuilder.php
@@ -36,11 +36,10 @@ protected function buildPath(RouteInformation $route): Collection
36
});
37
38
if ($reflectionParameter) {
39
- // The reflected param has no type, so ignore (should be defined in a ParametersFactory instead)
40
- if($reflectionParameter->getType() == null) {
+ // The reflected param has no type, so ignore (should be defined in a ParametersFactory instead)
+ if ($reflectionParameter->getType() == null) {
41
return null;
42
}
43
-
44
$schema = SchemaHelpers::guessFromReflectionType($reflectionParameter->getType());
45
46
0 commit comments