From 7868db0eced4cd4520883bf5d2ef26cb8950b7cd Mon Sep 17 00:00:00 2001 From: netkas Date: Thu, 31 Oct 2024 12:20:16 -0400 Subject: [PATCH] Remove unused Log import and add docblock for handleRpc method --- src/Socialbox/Socialbox.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/Socialbox/Socialbox.php b/src/Socialbox/Socialbox.php index be5b683..713cb7d 100644 --- a/src/Socialbox/Socialbox.php +++ b/src/Socialbox/Socialbox.php @@ -3,7 +3,6 @@ namespace Socialbox; use Exception; - use LogLib\Log; use Socialbox\Classes\Configuration; use Socialbox\Classes\Logger; use Socialbox\Classes\RpcHandler; @@ -15,6 +14,12 @@ class Socialbox { + /** + * Handles the RPC (Remote Procedure Call) requests by parsing the client request, + * executing the appropriate methods, and returning the responses. + * + * @return void + */ public static function handleRpc(): void { try