We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Data passed in getType($type, $recursive = false) $type is passed as array
getType($type, $recursive = false)
$type
Array ( [name] => string [params] => Array ( ) )
isset($this->typeMap[$type]
isset($this->typeMap[$type['name']]
The text was updated successfully, but these errors were encountered:
This is because this bundle is not updated yet for JMSSerializerBundle 1.0.x-dev. It currently works with the 0.9 release
See #30 for the update
Sorry, something went wrong.
No branches or pull requests
Data passed in
getType($type, $recursive = false)
$type
is passed as arrayChecking
isset($this->typeMap[$type]
Should be?
isset($this->typeMap[$type['name']]
The text was updated successfully, but these errors were encountered: