Skip to content

Commit d930749

Browse files
committed
fix: add space in error message
1 parent 03ece8b commit d930749

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Execution/Values.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public static function coerceVariableValues(Schema $schema, array $variableDefin
8888
}catch (GraphQLError $error){
8989
// add node to error when coercing input variable failed
9090
throw new ValidationError(
91-
"Cannot coerce input value of type \"{$varType->getName()}\"." .
91+
"Cannot coerce input value of type \"{$varType->getName()}\". " .
9292
$error->getMessage(),
9393
$varDefNode);
9494
}

0 commit comments

Comments
 (0)