Mercurial > hg > isophonics-drupal-site
comparison vendor/symfony/serializer/Normalizer/AbstractNormalizer.php @ 12:7a779792577d
Update Drupal core to v8.4.5 (via Composer)
author | Chris Cannam |
---|---|
date | Fri, 23 Feb 2018 15:52:07 +0000 |
parents | 4c8ae668cc8c |
children | 1fec387a4317 |
comparison
equal
deleted
inserted
replaced
11:bfffd8d7479a | 12:7a779792577d |
---|---|
189 { | 189 { |
190 if ($this->circularReferenceHandler) { | 190 if ($this->circularReferenceHandler) { |
191 return call_user_func($this->circularReferenceHandler, $object); | 191 return call_user_func($this->circularReferenceHandler, $object); |
192 } | 192 } |
193 | 193 |
194 throw new CircularReferenceException(sprintf('A circular reference has been detected (configured limit: %d).', $this->circularReferenceLimit)); | 194 throw new CircularReferenceException(sprintf('A circular reference has been detected when serializing the object of class "%s" (configured limit: %d)', get_class($object), $this->circularReferenceLimit)); |
195 } | 195 } |
196 | 196 |
197 /** | 197 /** |
198 * Gets attributes to normalize using groups. | 198 * Gets attributes to normalize using groups. |
199 * | 199 * |