Skip to content

Commit

Permalink
Fix variable access
Browse files Browse the repository at this point in the history
  • Loading branch information
marko-ogg committed Sep 26, 2023
1 parent 943c919 commit e5a20a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Checkers/StrictShapeTypeChecker.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public function validate(array $props, string $prop_name, string $prop_full_name
if (empty($checker)) {
return new PropTypeException(
$prop_name,
"Invalid property `{$prop_full_name}` with unexpected key `${key}` supplied."
"Invalid property `{$prop_full_name}` with unexpected key `{$key}` supplied."
);
}

Expand Down

0 comments on commit e5a20a1

Please sign in to comment.