Clarify error message parameter in RpcError constructor.

This commit is contained in:
netkas 2024-10-31 13:45:52 -04:00
parent 84db54feee
commit 47b8641c44

View file

@ -16,7 +16,7 @@ class RpcError implements SerializableInterface
*
* @param string $id The ID of the RPC request
* @param StandardError $code The error code
* @param string $error The error message
* @param string|null $error The error message
*/
public function __construct(string $id, StandardError $code, ?string $error)
{