Skip to content

Commit

Permalink
Fix: Run 'make coding-standards'
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Nov 28, 2022
1 parent 816a454 commit 6007e5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/Util/Specification/Closure.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public function isSatisfiedBy($value): bool
if (!\is_bool($isSatisfiedBy)) {
throw new \RuntimeException(\sprintf(
'Closure should return bool, got "%s" instead.',
\is_object($value) ? \get_class($value) : \gettype($value),
\is_object($value) ? $value::class : \gettype($value),
));
}

Expand Down

0 comments on commit 6007e5d

Please sign in to comment.