@@ -204,7 +204,7 @@ public function putIf(string $key, string $value, $compareValue, bool $returnNew
204
204
$ compare = $ this ->getCompareForIf ($ key , $ compareValue );
205
205
$ failOperation = $ this ->getFailOperation ($ key , $ returnNewValueOnFail );
206
206
207
- $ response = $ this ->txnRequest ($ key , [$ operation ], $ failOperation , [$ compare ]);
207
+ $ response = $ this ->txnRequest ([$ operation ], $ failOperation , [$ compare ]);
208
208
return $ this ->getIfResponse ($ returnNewValueOnFail , $ response );
209
209
}
210
210
@@ -224,7 +224,7 @@ public function deleteIf(string $key, $compareValue, bool $returnNewValueOnFail
224
224
$ compare = $ this ->getCompareForIf ($ key , $ compareValue );
225
225
$ failOperation = $ this ->getFailOperation ($ key , $ returnNewValueOnFail );
226
226
227
- $ response = $ this ->txnRequest ($ key , [$ operation ], $ failOperation , [$ compare ]);
227
+ $ response = $ this ->txnRequest ([$ operation ], $ failOperation , [$ compare ]);
228
228
return $ this ->getIfResponse ($ returnNewValueOnFail , $ response );
229
229
}
230
230
@@ -291,16 +291,15 @@ public function refreshLease(int $leaseID)
291
291
}
292
292
293
293
/**
294
- * Execute $requestOperation if $key value matches $previous otherwise $returnNewValueOnFail
294
+ * Execute $requestOperations if Compare succeeds, execute $failureOperations otherwise if defined
295
295
*
296
- * @param string $key
297
296
* @param array $requestOperations operations to perform on success, array of RequestOp objects
298
297
* @param array|null $failureOperations operations to perform on failure, array of RequestOp objects
299
298
* @param array $compare array of Compare objects
300
299
* @return TxnResponse
301
300
* @throws InvalidResponseStatusCodeException
302
301
*/
303
- public function txnRequest (string $ key , array $ requestOperations , ?array $ failureOperations , array $ compare ): TxnResponse
302
+ public function txnRequest (array $ requestOperations , ?array $ failureOperations , array $ compare ): TxnResponse
304
303
{
305
304
$ client = $ this ->getKvClient ();
306
305
0 commit comments