diff --git a/packages/graphql/src/Builder/Exceptions/Client/ClientException.php b/packages/graphql/src/Builder/Exceptions/Client/ClientException.php index b50e1235d..830a91b3b 100644 --- a/packages/graphql/src/Builder/Exceptions/Client/ClientException.php +++ b/packages/graphql/src/Builder/Exceptions/Client/ClientException.php @@ -4,7 +4,6 @@ use GraphQL\Error\ClientAware; use LastDragon_ru\LaraASP\GraphQL\Builder\Exceptions\BuilderException; -use LastDragon_ru\LaraASP\GraphQL\Package; use Override; abstract class ClientException extends BuilderException implements ClientAware { @@ -12,11 +11,4 @@ abstract class ClientException extends BuilderException implements ClientAware { public function isClientSafe(): bool { return true; } - - /** - * @deprecated 5.2.0 Not needed anymore and will be removed soon. - */ - public function getCategory(): string { - return Package::Name; - } }