File tree 2 files changed +5
-6
lines changed
2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 9
9
php:
10
10
- '7.2'
11
11
- '7.3'
12
+ - '7.4'
12
13
13
14
before_script:
14
15
- java -Djava.library.path=./DynamoDBLocal_lib -jar dynamodb_local/DynamoDBLocal.jar --port 3000 &
Original file line number Diff line number Diff line change @@ -199,15 +199,13 @@ private function getIndex()
199
199
200
200
private function hasValidQueryOperator($hash, $range = null)
201
201
{
202
- $hashCondition = $this->getCondition($hash);
203
-
204
- $validQueryOp = ComparisonOperator::isValidQueryDynamoDbOperator($hashCondition['type'] ?? null);
202
+ $hashConditionType = $this->getCondition($hash)['type'] ?? null;
203
+ $validQueryOp = ComparisonOperator::isValidQueryDynamoDbOperator($hashConditionType);
205
204
206
205
if ($validQueryOp && $range) {
207
- $rangeCondition = $this->getCondition($range);
208
-
206
+ $rangeConditionType = $this->getCondition($range)['type'] ?? null;
209
207
$validQueryOp = ComparisonOperator::isValidQueryDynamoDbOperator(
210
- $rangeCondition['type'] ,
208
+ $rangeConditionType ,
211
209
true
212
210
);
213
211
}
You can’t perform that action at this time.
0 commit comments