Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 5b39203

Browse files
committed
[Serializer] Allow to pass a single value for the groups opt
1 parent 0e9ded3 commit 5b39203

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/Symfony/Component/Serializer/Normalizer/AbstractNormalizer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,8 +227,8 @@ protected function getAllowedAttributes($classOrObject, array $context, $attribu
227227
}
228228

229229
$groups = false;
230-
if (isset($context[static::GROUPS]) && \is_array($context[static::GROUPS])) {
231-
$groups = $context[static::GROUPS];
230+
if (isset($context[static::GROUPS]) && (\is_array($context[static::GROUPS]) || is_scalar($context[static::GROUPS]))) {
231+
$groups = (array) $context[static::GROUPS];
232232
} elseif (!isset($context[static::ALLOW_EXTRA_ATTRIBUTES]) || $context[static::ALLOW_EXTRA_ATTRIBUTES]) {
233233
return false;
234234
}

src/Symfony/Component/Serializer/Tests/Normalizer/AbstractNormalizerTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,9 @@ public function testGetAllowedAttributesAsObjects()
9292
$result = $this->normalizer->getAllowedAttributes('c', array(AbstractNormalizer::GROUPS => array('test')), false);
9393
$this->assertEquals(array($a2, $a4), $result);
9494

95+
$result = $this->normalizer->getAllowedAttributes('c', array(AbstractNormalizer::GROUPS => 'test'), false);
96+
$this->assertEquals(array($a2, $a4), $result);
97+
9598
$result = $this->normalizer->getAllowedAttributes('c', array(AbstractNormalizer::GROUPS => array('other')), false);
9699
$this->assertEquals(array($a3, $a4), $result);
97100
}

0 commit comments

Comments
 (0)