@@ -153,7 +153,6 @@ public function __construct(
153
153
protected ?array $ openapiContext = null , // TODO Remove in 4.0
154
154
protected bool |OpenApiOperation |Webhook |null $ openapi = null ,
155
155
protected ?array $ exceptionToStatus = null ,
156
- protected ?bool $ queryParameterValidationEnabled = null ,
157
156
protected ?array $ links = null ,
158
157
159
158
?string $ shortName = null ,
@@ -201,6 +200,7 @@ public function __construct(
201
200
$ processor = null ,
202
201
?OptionsInterface $ stateOptions = null ,
203
202
array |Parameters |null $ parameters = null ,
203
+ ?bool $ queryParameterValidationEnabled = null ,
204
204
array $ extraProperties = [],
205
205
) {
206
206
parent ::__construct (
@@ -249,6 +249,7 @@ class: $class,
249
249
processor: $ processor ,
250
250
stateOptions: $ stateOptions ,
251
251
parameters: $ parameters ,
252
+ queryParameterValidationEnabled: $ queryParameterValidationEnabled ,
252
253
extraProperties: $ extraProperties
253
254
);
254
255
}
@@ -607,19 +608,6 @@ public function withExceptionToStatus(array $exceptionToStatus): self
607
608
return $ self ;
608
609
}
609
610
610
- public function getQueryParameterValidationEnabled (): ?bool
611
- {
612
- return $ this ->queryParameterValidationEnabled ;
613
- }
614
-
615
- public function withQueryParameterValidationEnabled (bool $ queryParameterValidationEnabled ): self
616
- {
617
- $ self = clone $ this ;
618
- $ self ->queryParameterValidationEnabled = $ queryParameterValidationEnabled ;
619
-
620
- return $ self ;
621
- }
622
-
623
611
public function getLinks (): ?array
624
612
{
625
613
return $ this ->links ;
0 commit comments