Skip to content

Commit

Permalink
[serializer][ObjectNormalizer] fixed Undefined attributeName.
Browse files Browse the repository at this point in the history
  • Loading branch information
aitboudad committed Mar 10, 2016
1 parent 6fb9fee commit ee087a1
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -57,6 +57,7 @@ protected function extractAttributes($object, $format = null, array $context = a
}

$name = $reflMethod->name;
$attributeName = null;

if (0 === strpos($name, 'get') || 0 === strpos($name, 'has')) {
// getters and hassers
Expand All @@ -66,7 +67,7 @@ protected function extractAttributes($object, $format = null, array $context = a
$attributeName = lcfirst(substr($name, 2));
}

if ($this->isAllowedAttribute($object, $attributeName)) {
if (null !== $attributeName && $this->isAllowedAttribute($object, $attributeName)) {
$attributes[$attributeName] = true;
}
}
Expand Down

0 comments on commit ee087a1

Please sign in to comment.