We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ed0e3a commit ee510d9Copy full SHA for ee510d9
src/GraphQLTypeGenerator.php
@@ -270,7 +270,10 @@ private function generateFieldCode(AbstractBeanPropertyDescriptor $descriptor) :
270
$type = $this->getType($descriptor);
271
272
if ($type === null) {
273
- return " // Field $getterName is ignored. Cannot represent a JSON or BLOB field in GraphQL.";
+ return <<<EOF
274
+ // Field $getterName is ignored. Cannot represent a JSON or BLOB field in GraphQL.
275
+
276
+EOF;
277
}
278
279
$code = <<<EOF
0 commit comments