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
At the moment array types are turned into the string "array". An improvement on this mechanism would be to descend into the array, and safely convert the array items too (recursively).
This is useful for stuff like Predis\Client->__call so we know the parameters used. At the moment, we'd get an argv of string("set"), string("array") which is ok, but it would be more helpful to convert this to string("set"), array{string("foo"), string("bar")}.
The text was updated successfully, but these errors were encountered:
At the moment
array
types are turned into the string"array"
. An improvement on this mechanism would be to descend into the array, and safely convert the array items too (recursively).This is useful for stuff like
Predis\Client->__call
so we know the parameters used. At the moment, we'd get anargv
ofstring("set"), string("array")
which is ok, but it would be more helpful to convert this tostring("set"), array{string("foo"), string("bar")}
.The text was updated successfully, but these errors were encountered: