Skip to content

Commit a817a56

Browse files
authored
Merge pull request #4 from 007hacky007/txnrequest-fix
Removed extra unused parameter $key from the txnRequest method
2 parents 656c019 + 2ff4ab3 commit a817a56

File tree

3 files changed

+8
-10
lines changed

3 files changed

+8
-10
lines changed

src/Client.php

+4-5
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ public function putIf(string $key, string $value, $compareValue, bool $returnNew
204204
$compare = $this->getCompareForIf($key, $compareValue);
205205
$failOperation = $this->getFailOperation($key, $returnNewValueOnFail);
206206

207-
$response = $this->txnRequest($key, [$operation], $failOperation, [$compare]);
207+
$response = $this->txnRequest([$operation], $failOperation, [$compare]);
208208
return $this->getIfResponse($returnNewValueOnFail, $response);
209209
}
210210

@@ -224,7 +224,7 @@ public function deleteIf(string $key, $compareValue, bool $returnNewValueOnFail
224224
$compare = $this->getCompareForIf($key, $compareValue);
225225
$failOperation = $this->getFailOperation($key, $returnNewValueOnFail);
226226

227-
$response = $this->txnRequest($key, [$operation], $failOperation, [$compare]);
227+
$response = $this->txnRequest([$operation], $failOperation, [$compare]);
228228
return $this->getIfResponse($returnNewValueOnFail, $response);
229229
}
230230

@@ -291,16 +291,15 @@ public function refreshLease(int $leaseID)
291291
}
292292

293293
/**
294-
* Execute $requestOperation if $key value matches $previous otherwise $returnNewValueOnFail
294+
* Execute $requestOperations if Compare succeeds, execute $failureOperations otherwise if defined
295295
*
296-
* @param string $key
297296
* @param array $requestOperations operations to perform on success, array of RequestOp objects
298297
* @param array|null $failureOperations operations to perform on failure, array of RequestOp objects
299298
* @param array $compare array of Compare objects
300299
* @return TxnResponse
301300
* @throws InvalidResponseStatusCodeException
302301
*/
303-
public function txnRequest(string $key, array $requestOperations, ?array $failureOperations, array $compare): TxnResponse
302+
public function txnRequest(array $requestOperations, ?array $failureOperations, array $compare): TxnResponse
304303
{
305304
$client = $this->getKvClient();
306305

src/ClientInterface.php

+2-3
Original file line numberDiff line numberDiff line change
@@ -78,16 +78,15 @@ public function putIf(string $key, string $value, $compareValue, bool $returnNew
7878
public function deleteIf(string $key, $compareValue, bool $returnNewValueOnFail = false);
7979

8080
/**
81-
* Execute $requestOperation if $key value matches $previous otherwise $returnNewValueOnFail
81+
* Execute $requestOperations if Compare succeeds, execute $failureOperations otherwise if defined
8282
*
83-
* @param string $key
8483
* @param array $requestOperations operations to perform on success, array of RequestOp objects
8584
* @param array|null $failureOperations operations to perform on failure, array of RequestOp objects
8685
* @param array $compare array of Compare objects
8786
* @return TxnResponse
8887
* @throws InvalidResponseStatusCodeException
8988
*/
90-
public function txnRequest(string $key, array $requestOperations, ?array $failureOperations, array $compare): TxnResponse;
89+
public function txnRequest(array $requestOperations, ?array $failureOperations, array $compare): TxnResponse;
9190

9291
/**
9392
* Get an instance of Compare

src/ShardedClient.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -145,9 +145,9 @@ public function deleteIf(string $key, $compareValue, bool $returnNewValueOnFail
145145
* @inheritDoc
146146
* @throws Exception
147147
*/
148-
public function txnRequest(string $key, array $requestOperations, ?array $failureOperations, array $compare): TxnResponse
148+
public function txnRequest(array $requestOperations, ?array $failureOperations, array $compare): TxnResponse
149149
{
150-
return $this->getClientFromKey($key)->txnRequest($key, $requestOperations, $failureOperations, $compare);
150+
return $this->getRandomClient()->txnRequest($requestOperations, $failureOperations, $compare);
151151
}
152152

153153
/**

0 commit comments

Comments
 (0)