Skip to content

Commit

Permalink
Prettify docs
Browse files Browse the repository at this point in the history
  • Loading branch information
simPod authored and actions-user committed Jan 6, 2024
1 parent a54cad3 commit 4cb9749
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions docs/class-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ See [related documentation](executing-queries.md).

@phpstan-import-type FieldResolver from Executor

@see \GraphQL\Tests\GraphQLTest
@see Tests\GraphQLTest

### GraphQL\GraphQL Methods

Expand Down Expand Up @@ -1506,7 +1506,7 @@ function setErrorsHandler(?callable $errorsHandler): self
* If debug argument is passed, output of error formatter is enriched which debugging information
* ("debugMessage", "trace" keys depending on flags).
*
* $debug argument must sum of flags from @see \GraphQL\Error\DebugFlag
* $debug argument must sum of flags from @see DebugFlag
*
* @phpstan-return SerializableResult
*
Expand Down Expand Up @@ -1870,7 +1870,7 @@ static function setInternalErrorMessage(string $msg): void
* This method only exposes the exception message when the given exception
* implements the ClientAware interface, or when debug flags are passed.
*
* For a list of available debug flags @see \GraphQL\Error\DebugFlag constants.
* For a list of available debug flags @see DebugFlag constants.
*
* @return SerializableError
*
Expand Down Expand Up @@ -2129,7 +2129,7 @@ function setPersistedQueryLoader(?callable $persistedQueryLoader): self
/**
* Set response debug flags.
*
* @see \GraphQL\Error\DebugFlag class for a list of all available flags
* @see DebugFlag class for a list of all available flags
*
* @api
*/
Expand Down Expand Up @@ -2381,7 +2381,7 @@ static function create(array $params, bool $readonly = false): GraphQL\Server\Op

## GraphQL\Utils\BuildSchema

Build instance of @see \GraphQL\Type\Schema out of schema language definition (string or parsed AST).
Build instance of @see Schema out of schema language definition (string or parsed AST).

See [schema definition language docs](schema-definition-language.md) for details.

Expand Down Expand Up @@ -2434,11 +2434,11 @@ static function build($source, ?callable $typeConfigDecorator = null, array $opt

```php
/**
* This takes the AST of a schema from @see \GraphQL\Language\Parser::parse().
* This takes the AST of a schema from @see Parser::parse().
*
* If no schema definition is provided, then it will look for types named Query and Mutation.
*
* Given that AST it constructs a @see \GraphQL\Type\Schema. The resulting schema
* Given that AST it constructs a @see Schema. The resulting schema
* has no resolve methods, so execution will use default resolvers.
*
* @phpstan-param TypeConfigDecorator|null $typeConfigDecorator
Expand Down

0 comments on commit 4cb9749

Please sign in to comment.