@@ -224,12 +224,12 @@ private function buildOpenapi(\SimpleXMLElement $resource): bool|OpenApiOperatio
224224 in: $ this ->phpize ($ parameter , 'in ' , 'string ' ),
225225 description: $ this ->phpize ($ parameter , 'description ' , 'string ' ),
226226 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 ' , null ),
229+ schema: isset ($ parameter ->schema ->values ) ? $ this ->buildValues ($ parameter ->schema ->values ) : [] ,
230230 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 ' , null ),
233233 example: $ this ->phpize ($ parameter , 'example ' , 'string ' ),
234234 examples: isset ($ parameter ->examples ->values ) ? new \ArrayObject ($ this ->buildValues ($ parameter ->examples ->values )) : null ,
235235 content: isset ($ parameter ->content ->values ) ? new \ArrayObject ($ this ->buildValues ($ parameter ->content ->values )) : null ,
0 commit comments