Implement SerializableInterface in RpcResponse

This commit is contained in:
netkas 2024-09-03 12:41:51 -04:00
parent 0ad263b1f0
commit 60e0a3cb19

View file

@ -2,7 +2,9 @@
namespace Socialbox\Objects; namespace Socialbox\Objects;
class RpcResponse use Socialbox\Interfaces\SerializableInterface;
class RpcResponse implements SerializableInterface
{ {
private string $id; private string $id;
private ?object $result; private ?object $result;