1 | <?php |
||
2 | |||
3 | namespace Hoooklife\DynamodbPodm\Parsers; |
||
4 | |||
5 | use Hoooklife\DynamodbPodm\ComparisonOperator; |
||
6 | |||
7 | class KeyConditionExpression extends ConditionExpression |
||
8 | { |
||
9 | protected function getSupportedOperators() |
||
10 | { |
||
11 | return array_only(static::OPERATORS, [ |
||
0 ignored issues
–
show
|
|||
12 | ComparisonOperator::EQ, |
||
13 | ComparisonOperator::LE, |
||
14 | ComparisonOperator::LT, |
||
15 | ComparisonOperator::GE, |
||
16 | ComparisonOperator::GT, |
||
17 | ComparisonOperator::BEGINS_WITH, |
||
18 | ComparisonOperator::BETWEEN, |
||
19 | ]); |
||
20 | } |
||
21 | } |
||
22 |
This function has been deprecated. The supplier of the function has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead.