Explorar o código

Merge remote branch 'Brouznouf/patch-1'

* Brouznouf/patch-1:
  [Serializer] Fix bug when denormalize a class in cache
Fabien Potencier %!s(int64=14) %!d(string=hai) anos
pai
achega
0f5f28c039
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/Symfony/Component/Serializer/Serializer.php

+ 1 - 1
src/Symfony/Component/Serializer/Serializer.php

@@ -80,7 +80,7 @@ class Serializer implements SerializerInterface
             throw new \LogicException('You must register at least one normalizer to be able to denormalize objects.');
         }
         if (isset($this->normalizerCache[$class][$format])) {
-            return $this->normalizerCache[$class][$format]->denormalize($data, $format);
+            return $this->normalizerCache[$class][$format]->denormalize($data, $class, $format);
         }
         $reflClass = new \ReflectionClass($class);
         foreach ($this->normalizers as $normalizer) {