Skip to content

Commit b467c0e

Browse files
committed
fixed CS
1 parent e60af9d commit b467c0e

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

Serializer.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,6 @@ private function normalizeObject($object, $format = null, array $context = array
237237
foreach ($this->normalizers as $normalizer) {
238238
if ($normalizer instanceof NormalizerInterface
239239
&& $normalizer->supportsNormalization($object, $format)) {
240-
241240
return $normalizer->normalize($object, $format, $context);
242241
}
243242
}
@@ -271,7 +270,6 @@ private function denormalizeObject($data, $class, $format = null, array $context
271270
foreach ($this->normalizers as $normalizer) {
272271
if ($normalizer instanceof DenormalizerInterface
273272
&& $normalizer->supportsDenormalization($data, $class, $format)) {
274-
275273
return $normalizer->denormalize($data, $class, $format, $context);
276274
}
277275
}

0 commit comments

Comments
 (0)