Skip to content

Commit

Permalink
Actualize link to spec chapter about status codes (#463)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-demb authored Apr 20, 2022
1 parent 063b9b5 commit 3b97f9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Http/HttpCodeDecider.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class HttpCodeDecider implements HttpCodeDeciderInterface
/**
* Decides the HTTP status code based on the answer.
*
* @see https://github.com/APIs-guru/graphql-over-http#status-codes
* @see https://github.com/graphql/graphql-over-http/blob/main/spec/GraphQLOverHTTP.md#status-codes
*/
public function decideHttpStatusCode(ExecutionResult $result): int
{
Expand Down
2 changes: 1 addition & 1 deletion src/Http/HttpCodeDeciderInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ interface HttpCodeDeciderInterface
/**
* Decides the HTTP status code based on the answer.
*
* @see https://github.com/APIs-guru/graphql-over-http#status-codes
* @see https://github.com/graphql/graphql-over-http/blob/main/spec/GraphQLOverHTTP.md#status-codes
*/
public function decideHttpStatusCode(ExecutionResult $result): int;
}

0 comments on commit 3b97f9d

Please sign in to comment.