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 e7502b6 commit 83c0eb6Copy full SHA for 83c0eb6
1 file changed
src/OpenApi/Model/Parameter.php
@@ -53,12 +53,12 @@ public function getDeprecated(): bool
53
return $this->deprecated;
54
}
55
56
- public function canAllowEmptyValue(): bool
+ public function canAllowEmptyValue(): ?bool
57
{
58
return $this->allowEmptyValue;
59
60
61
- public function getAllowEmptyValue(): bool
+ public function getAllowEmptyValue(): ?bool
62
63
64
@@ -83,12 +83,12 @@ public function getExplode(): bool
83
return $this->explode;
84
85
86
- public function canAllowReserved(): bool
+ public function canAllowReserved(): ?bool
87
88
return $this->allowReserved;
89
90
91
- public function getAllowReserved(): bool
+ public function getAllowReserved(): ?bool
92
93
94
0 commit comments