Skip to content

Commit 9a5f789

Browse files
committed
Change the naming rule for extension modules.
1 parent 486df61 commit 9a5f789

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Utils.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ public static function pwFieldToGraphQlField(Field $field)
241241
}
242242

243243
// use third party field if available
244-
$thirdPartyClassName = "\\ProcessWire\\" . $field->type->className() . "GraphQL";
244+
$thirdPartyClassName = "\\ProcessWire\\GraphQL" . $field->type->className();
245245
if (class_exists($thirdPartyClassName)) {
246246
return new FieldtypeThirdParty($thirdPartyClassName, $field);
247247
}

0 commit comments

Comments
 (0)