Skip to content

Commit

Permalink
Issue ergebnis#867: Fixing variable type error by casting the value.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexis-saransig-lullabot committed Mar 7, 2023
1 parent 3f2e8c7 commit 8c02540
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SchemaNormalizer.php
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ private function normalizeObject(
$normalized->{$name} = $this->normalizeData(
$value,
$valueSchema,
$pointerToData->append(Pointer\ReferenceToken::fromString($name)),
$pointerToData->append(Pointer\ReferenceToken::fromString((string) $name)),
);
}

Expand Down

0 comments on commit 8c02540

Please sign in to comment.