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

Skip to content

Commit 9e87f51

Browse files
committed
Comment typo
1 parent a783ffa commit 9e87f51

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public function normalize($object, $format = null, array $context = array())
7676
$attributeValue = call_user_func($this->callbacks[$attributeName], $attributeValue);
7777
}
7878

79-
// Recursive call are done at the end of the process to allow @MaxDepth to work
79+
// Recursive calls are done at the end of the process to allow @MaxDepth to work
8080
if (null !== $attributeValue && !is_scalar($attributeValue)) {
8181
$stack[$attributeName] = $attributeValue;
8282
continue;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public function normalize($object, $format = null, array $context = array())
7373
$attributeValue = call_user_func($this->callbacks[$attribute], $attributeValue);
7474
}
7575

76-
// Recursive call are done at the end of the process to allow @MaxDepth to work
76+
// Recursive calls are done at the end of the process to allow @MaxDepth to work
7777
if (null !== $attributeValue && !is_scalar($attributeValue)) {
7878
$stack[$attribute] = $attributeValue;
7979
continue;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public function normalize($object, $format = null, array $context = array())
6969
$attributeValue = call_user_func($this->callbacks[$property->name], $attributeValue);
7070
}
7171

72-
// Recursive call are done at the end of the process to allow @MaxDepth to work
72+
// Recursive calls are done at the end of the process to allow @MaxDepth to work
7373
if (null !== $attributeValue && !is_scalar($attributeValue)) {
7474
$stack[$property->name] = $attributeValue;
7575
continue;

0 commit comments

Comments
 (0)