Skip to content

Commit

Permalink
Fix merge (bis)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-grekas committed Jan 29, 2024
1 parent 7888af1 commit 95767d5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Tests/Normalizer/AbstractObjectNormalizerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -938,7 +938,7 @@ protected function extractAttributes(object $object, string $format = null, arra
return array_keys((array) $object);
}

protected function getAttributeValue(object $object, string $attribute, string $format = null, array $context = [])
protected function getAttributeValue(object $object, string $attribute, string $format = null, array $context = []): mixed
{
return $object->{$attribute};
}
Expand Down Expand Up @@ -978,7 +978,7 @@ protected function extractAttributes(object $object, string $format = null, arra
return array_keys((array) $object);
}

protected function getAttributeValue(object $object, string $attribute, string $format = null, array $context = [])
protected function getAttributeValue(object $object, string $attribute, string $format = null, array $context = []): mixed
{
return $object->{$attribute};
}
Expand Down Expand Up @@ -1013,7 +1013,7 @@ protected function extractAttributes(object $object, string $format = null, arra
return array_keys((array) $object);
}

protected function getAttributeValue(object $object, string $attribute, string $format = null, array $context = [])
protected function getAttributeValue(object $object, string $attribute, string $format = null, array $context = []): mixed
{
return $object->{$attribute};
}
Expand Down

0 comments on commit 95767d5

Please sign in to comment.