You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor: replace JSON encode/decode roundtrip with direct array-to-object conversion
Replace json_encode() → json_decode() roundtrip in OpenApiResponseValidator
with a recursive toObject() helper that directly converts PHP arrays to
stdClass objects. This eliminates temporary JSON string allocations that
doubled memory usage for large response bodies and schemas during validation.
0 commit comments