Refactor header validation and add GetSessionState scaffold.

This commit is contained in:
netkas 2024-12-12 05:12:28 -05:00
parent 701acfde35
commit f0624e71d1
3 changed files with 49 additions and 18 deletions

View file

@ -0,0 +1,20 @@
<?php
namespace Socialbox\Classes\StandardMethods;
use Socialbox\Abstracts\Method;
use Socialbox\Interfaces\SerializableInterface;
use Socialbox\Objects\ClientRequest;
use Socialbox\Objects\RpcRequest;
class GetSessionState extends Method
{
/**
* @inheritDoc
*/
public static function execute(ClientRequest $request, RpcRequest $rpcRequest): ?SerializableInterface
{
// TODO: Implement execute() method.
}
}