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
{{ message }}
This repository was archived by the owner on Feb 21, 2025. It is now read-only.
I think replacing value on-fly is a quick patch, but using Reflection (maybe custom reflection classes) or a Builder (for types) should be a better solution 🤔.
Interfaces that contains methods with default parameters as
mixed, breaks the generated code.HHVM Reflection generate a
HH\mixedvalue, but HHVM does not recognizes thistype as a
mixedvalue, likeHH\bool,HH\string, etc.Test code:
I think replacing value on-fly is a quick patch, but using Reflection (maybe custom reflection classes) or a Builder (for types) should be a better solution 🤔.