forked from loafle/openapi-generator-original
* [PHP] ObjectSerializer fix for array of objects Array of objects translate to "map[string,object][]" and they fail to deserialize. This is because the deserialization does not parse the mapping string correctly. A quick fix is trying moving array deserialization before object deserialization. Example object ObjectExample: type: object properties: data: type: array items: type: object additionalProperties: true * Update sample Co-authored-by: Alexandru Negrila <alex@arntech.ro>