From 1ff667eafd23b3484df9d55d3233a09f7a3fe941 Mon Sep 17 00:00:00 2001 From: ghost Date: Sun, 18 Feb 2024 01:29:08 +0200 Subject: [PATCH] add kevaPut address attribute --- src/Client.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/Client.php b/src/Client.php index 80f2bcd..f08e65f 100644 --- a/src/Client.php +++ b/src/Client.php @@ -390,9 +390,10 @@ class Client } public function kevaPut( - string $namespace, - string $key, - string $value + string $namespace, + string $key, + string $value, + ?string $address = null ): ?string { $this->_id++; @@ -405,7 +406,8 @@ class Client 'params' => [ $namespace, $key, - $value + $value, + $address ], 'id' => $this->_id ]