Remove unused Log import and add docblock for handleRpc method

This commit is contained in:
netkas 2024-10-31 12:20:16 -04:00
parent ff0fde7156
commit 7868db0ece

View file

@ -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