Change properties in RpcRequest to private
This commit is contained in:
parent
0a8e4f701f
commit
8d9f1cc64f
1 changed files with 3 additions and 3 deletions
|
@ -11,9 +11,9 @@ use Socialbox\Interfaces\SerializableInterface;
|
||||||
|
|
||||||
class RpcRequest implements SerializableInterface
|
class RpcRequest implements SerializableInterface
|
||||||
{
|
{
|
||||||
protected ?string $id;
|
private ?string $id;
|
||||||
protected string $method;
|
private string $method;
|
||||||
protected ?array $parameters;
|
private ?array $parameters;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs the object from an array of data.
|
* Constructs the object from an array of data.
|
||||||
|
|
Loading…
Add table
Reference in a new issue