8000 Recursive denormalize with property info by mihai-stancu · Pull Request #17193 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

Recursive denormalize with property info #17193

New issue

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

Closed
wants to merge 13 commits into from
Prev Previous commit
Next Next commit
[Serializer] Add missing typehint
  • Loading branch information
dunglas committed Dec 22, 2015
commit 98ff26acaa3039449800986ad28266198b6f45bb
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ protected function isAttributeToNormalize($object, $attributeName, &$context)
*
* @return array
*/
protected function setAttribute($data, $attribute, $attributeValue)
protected function setAttribute(array $data, $attribute, $attributeValue)
{
if ($this->nameConverter) {
$attribute = $this->nameConverter->normalize($attribute);
Expand Down
0