Fix missing sprintf

This commit is contained in:
Ruud Kamphuis 2018-04-05 17:14:28 +02:00 committed by GitHub
parent 87729589e0
commit 66108bec84
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -271,11 +271,11 @@ class Schema
foreach ($types as $index => $type) { foreach ($types as $index => $type) {
if (!$type instanceof Type) { if (!$type instanceof Type) {
throw new InvariantViolation( throw new InvariantViolation(sprintf(
'Each entry of schema types must be instance of GraphQL\Type\Definition\Type but entry at %s is %s', 'Each entry of schema types must be instance of GraphQL\Type\Definition\Type but entry at %s is %s',
$index, $index,
Utils::printSafe($type) Utils::printSafe($type)
); ));
} }
yield $type; yield $type;
} }