@@ -86,7 +86,7 @@ private class GraphqlSchemaResolverClass extends ClassDeclaration {
8686}
8787
8888/** Gets an HTTP method that is supported for querying a GraphQL server. */
89- private string getASupportedHTTPMethod ( ) { result = [ "get" , "post" ] }
89+ private string getASupportedHttpMethod ( ) { result = [ "get" , "post" ] }
9090
9191/**
9292 * A `ClassDeclaration` for a class that extends `GraphQL::Schema::Object`.
@@ -176,7 +176,7 @@ class GraphqlResolveMethod extends Method, HTTP::Server::RequestHandler::Range {
176176
177177 override string getFramework ( ) { result = "GraphQL" }
178178
179- override string getAnHttpMethod ( ) { result = getASupportedHTTPMethod ( ) }
179+ override string getAnHttpMethod ( ) { result = getASupportedHttpMethod ( ) }
180180
181181 /** Gets the mutation class containing this method. */
182182 GraphqlResolvableClass getMutationClass ( ) { result = resolvableClass }
@@ -225,7 +225,7 @@ class GraphqlLoadMethod extends Method, HTTP::Server::RequestHandler::Range {
225225
226226 override string getFramework ( ) { result = "GraphQL" }
227227
228- override string getAnHttpMethod ( ) { result = getASupportedHTTPMethod ( ) }
228+ override string getAnHttpMethod ( ) { result = getASupportedHttpMethod ( ) }
229229
230230 /** Gets the mutation class containing this method. */
231231 GraphqlResolvableClass getMutationClass ( ) { result = resolvableClass }
@@ -396,7 +396,7 @@ class GraphqlFieldResolutionMethod extends Method, HTTP::Server::RequestHandler:
396396
397397 override string getFramework ( ) { result = "GraphQL" }
398398
399- override string getAnHttpMethod ( ) { result = getASupportedHTTPMethod ( ) }
399+ override string getAnHttpMethod ( ) { result = getASupportedHttpMethod ( ) }
400400
401401 /** Gets the class containing this method. */
402402 GraphqlSchemaObjectClass getGraphqlClass ( ) { result = schemaObjectClass }
0 commit comments