From 24cb66f3f9e5dae33b6bd3fae11bad617c6a101b Mon Sep 17 00:00:00 2001 From: Aleksei Lebedev <1329824+LastDragon-ru@users.noreply.github.com> Date: Mon, 1 Jan 2024 14:33:13 +0400 Subject: [PATCH] refactor(graphql)!: Removed deprecated `ClientException::getCategory()`. --- .../src/Builder/Exceptions/Client/ClientException.php | 8 -------- 1 file changed, 8 deletions(-) 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; - } }