Skip to content

Commit 3f730a6

Browse files
Merge branch '6.3' into 6.4
* 6.3: Fix merge (bis) Fix merge
2 parents 566a1e0 + 95767d5 commit 3f730a6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Tests/Normalizer/AbstractObjectNormalizerTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -931,7 +931,7 @@ protected function extractAttributes(object $object, string $format = null, arra
931931
return array_keys((array) $object);
932932
}
933933

934-
protected function getAttributeValue(object $object, string $attribute, string $format = null, array $context = [])
934+
protected function getAttributeValue(object $object, string $attribute, string $format = null, array $context = []): mixed
935935
{
936936
return $object->{$attribute};
937937
}
@@ -971,7 +971,7 @@ protected function extractAttributes(object $object, string $format = null, arra
971971
return array_keys((array) $object);
972972
}
973973

974-
protected function getAttributeValue(object $object, string $attribute, string $format = null, array $context = [])
974+
protected function getAttributeValue(object $object, string $attribute, string $format = null, array $context = []): mixed
975975
{
976976
return $object->{$attribute};
977977
}
@@ -1006,7 +1006,7 @@ protected function extractAttributes(object $object, string $format = null, arra
10061006
return array_keys((array) $object);
10071007
}
10081008

1009-
protected function getAttributeValue(object $object, string $attribute, string $format = null, array $context = [])
1009+
protected function getAttributeValue(object $object, string $attribute, string $format = null, array $context = []): mixed
10101010
{
10111011
return $object->{$attribute};
10121012
}

0 commit comments

Comments
 (0)