Skip to content
This repository has been archived by the owner on Jan 20, 2024. It is now read-only.

Commit

Permalink
Address PHP 7.4 deprecation for implode() with historical parameter o…
Browse files Browse the repository at this point in the history
…rder (#162)
  • Loading branch information
iSize1ce authored Jan 31, 2020
1 parent 02f8843 commit 6315778
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Types/TypeValidationError.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public static function unexpectedValue($property, $possibleValues, $actualValue)
{
return new self($property, \sprintf(
'Expected any of [%s], got (%s) "%s"',
\implode($possibleValues, ', '),
\implode(', ', $possibleValues),
\gettype($actualValue),
$actualValue
));
Expand Down

0 comments on commit 6315778

Please sign in to comment.