Refactor header validation and add GetSessionState scaffold.
This commit is contained in:
parent
701acfde35
commit
f0624e71d1
3 changed files with 49 additions and 18 deletions
20
src/Socialbox/Classes/StandardMethods/GetSessionState.php
Normal file
20
src/Socialbox/Classes/StandardMethods/GetSessionState.php
Normal 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.
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue