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
Calling getSerializableData() is a significant performance overhead which is currently necessary because of how php-openapi handles default values. We should try to avoid that.
The text was updated successfully, but these errors were encountered:
The method getSerializableData() is used in resolving property and faker. For resolving properties, I am changing the implementation as per spec: default value of nullable is false.
if nullable is false, we set isRequired to true which is also incorrect. Example: a column with data type string and nullable false can have non-null empty string value
moved from cebe#123
The text was updated successfully, but these errors were encountered: