From 8d9f1cc64f05d82307ed85e0b8d11591b58b0b63 Mon Sep 17 00:00:00 2001 From: netkas Date: Wed, 25 Sep 2024 00:44:34 -0400 Subject: [PATCH] Change properties in RpcRequest to private --- src/Socialbox/Objects/RpcRequest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Socialbox/Objects/RpcRequest.php b/src/Socialbox/Objects/RpcRequest.php index feb8f9f..1834042 100644 --- a/src/Socialbox/Objects/RpcRequest.php +++ b/src/Socialbox/Objects/RpcRequest.php @@ -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.