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
Under certain circumstances I want to handle the serialization of an object myself. The other times I want to have the serializer behave like normal.
Sadly, there is no way for a Handler to withdraw from processing and tell the GraphNavigator that it shall continue as if there was no handler involved.
The straight way would be to have the handler return void instead of null. Yet PHP does not distinguish between no return value and a Null return value so I don't know what's the best way to implement it.
The text was updated successfully, but these errors were encountered:
Under certain circumstances I want to handle the serialization of an object myself. The other times I want to have the serializer behave like normal.
Sadly, there is no way for a Handler to withdraw from processing and tell the GraphNavigator that it shall continue as if there was no handler involved.
See my ticket at http://stackoverflow.com/questions/30131615
The straight way would be to have the handler return void instead of null. Yet PHP does not distinguish between no return value and a Null return value so I don't know what's the best way to implement it.
The text was updated successfully, but these errors were encountered: