From b69613fbc82b9d48be7b8ea288c8e074cd0d3a66 Mon Sep 17 00:00:00 2001 From: Aleksei Lebedev <1329824+LastDragon-ru@users.noreply.github.com> Date: Thu, 5 Oct 2023 11:49:48 +0400 Subject: [PATCH] docs(graphql): `Printer` class reference fix. Issue: #99 --- packages/graphql/README.md | 2 +- packages/graphql/docs/Examples/Printer.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/graphql/README.md b/packages/graphql/README.md index f993c1cc8..580c030b9 100644 --- a/packages/graphql/README.md +++ b/packages/graphql/README.md @@ -171,7 +171,7 @@ The package provides bindings for [`Printer`][pkg:graphql-printer] so you can si use Illuminate\Container\Container; use LastDragon_ru\LaraASP\Dev\App\Example; use LastDragon_ru\LaraASP\GraphQLPrinter\Contracts\DirectiveFilter; -use LastDragon_ru\LaraASP\GraphQLPrinter\Printer; +use LastDragon_ru\LaraASP\GraphQLPrinter\Contracts\Printer; use LastDragon_ru\LaraASP\GraphQLPrinter\Settings\DefaultSettings; use Nuwave\Lighthouse\Schema\SchemaBuilder; diff --git a/packages/graphql/docs/Examples/Printer.php b/packages/graphql/docs/Examples/Printer.php index c52217f73..36af355e4 100644 --- a/packages/graphql/docs/Examples/Printer.php +++ b/packages/graphql/docs/Examples/Printer.php @@ -3,7 +3,7 @@ use Illuminate\Container\Container; use LastDragon_ru\LaraASP\Dev\App\Example; use LastDragon_ru\LaraASP\GraphQLPrinter\Contracts\DirectiveFilter; -use LastDragon_ru\LaraASP\GraphQLPrinter\Printer; +use LastDragon_ru\LaraASP\GraphQLPrinter\Contracts\Printer; use LastDragon_ru\LaraASP\GraphQLPrinter\Settings\DefaultSettings; use Nuwave\Lighthouse\Schema\SchemaBuilder;