Skip to content

Commit

Permalink
fix: missin quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
mrbarletta committed Jun 29, 2021
1 parent 163a0d9 commit d74e496
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion graphql/Schema/UserType.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ private function retrieveUser($id, $info)
}
if (file_exists(__DIR__ . '/../../../../../graphql/Schema/customUserType.php')) {
require_once __DIR__ . '/../../../../../graphql/Schema/customUserType.php';
if (method_exists(customUserType, 'processFields')) {
if (method_exists('customUserType', 'processFields')) {
$module_arr = customUserType::processFields($contact, $queryFields, $module_arr);
}
}
Expand Down

0 comments on commit d74e496

Please sign in to comment.