Change properties in RpcRequest to private

This commit is contained in:
netkas 2024-09-25 00:44:34 -04:00
parent 0a8e4f701f
commit 8d9f1cc64f

View file

@ -11,9 +11,9 @@ use Socialbox\Interfaces\SerializableInterface;
class RpcRequest implements SerializableInterface
{
protected ?string $id;
protected string $method;
protected ?array $parameters;
private ?string $id;
private string $method;
private ?array $parameters;
/**
* Constructs the object from an array of data.