File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 99php :
1010 - ' 7.2'
1111 - ' 7.3'
12+ - ' 7.4'
1213
1314before_script :
1415 - 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()
199199
200200 private function hasValidQueryOperator ($ hash , $ range = null )
201201 {
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 );
205204
206205 if ($ validQueryOp && $ range ) {
207- $ rangeCondition = $ this ->getCondition ($ range );
208-
206+ $ rangeConditionType = $ this ->getCondition ($ range )['type ' ] ?? null ;
209207 $ validQueryOp = ComparisonOperator::isValidQueryDynamoDbOperator (
210- $ rangeCondition [ ' type ' ] ,
208+ $ rangeConditionType ,
211209 true
212210 );
213211 }
You can’t perform that action at this time.
0 commit comments