@@ -224,12 +224,12 @@ private function buildOpenapi(\SimpleXMLElement $resource): bool|OpenApiOperatio
224
224
in: $ this ->phpize ($ parameter , 'in ' , 'string ' ),
225
225
description: $ this ->phpize ($ parameter , 'description ' , 'string ' ),
226
226
required: $ this ->phpize ($ parameter , 'required ' , 'bool ' ),
227
- deprecated: $ this ->phpize ($ parameter , 'deprecated ' , 'bool ' ),
228
- allowEmptyValue: $ this ->phpize ($ parameter , 'allowEmptyValue ' , 'bool ' ),
229
- schema: isset ($ parameter ->schema ->values ) ? $ this ->buildValues ($ parameter ->schema ->values ) : null ,
227
+ deprecated: $ this ->phpize ($ parameter , 'deprecated ' , 'bool ' , false ),
228
+ allowEmptyValue: $ this ->phpize ($ parameter , 'allowEmptyValue ' , 'bool ' , false ),
229
+ schema: isset ($ parameter ->schema ->values ) ? $ this ->buildValues ($ parameter ->schema ->values ) : [] ,
230
230
style: $ this ->phpize ($ parameter , 'style ' , 'string ' ),
231
- explode: $ this ->phpize ($ parameter , 'explode ' , 'bool ' ),
232
- allowReserved: $ this ->phpize ($ parameter , 'allowReserved ' , 'bool ' ),
231
+ explode: $ this ->phpize ($ parameter , 'explode ' , 'bool ' , false ),
232
+ allowReserved: $ this ->phpize ($ parameter , 'allowReserved ' , 'bool ' , false ),
233
233
example: $ this ->phpize ($ parameter , 'example ' , 'string ' ),
234
234
examples: isset ($ parameter ->examples ->values ) ? new \ArrayObject ($ this ->buildValues ($ parameter ->examples ->values )) : null ,
235
235
content: isset ($ parameter ->content ->values ) ? new \ArrayObject ($ this ->buildValues ($ parameter ->content ->values )) : null ,
0 commit comments