PREFIX
PREFIX = 0
Indicates that the operation is in pre-order
An expression object that represents an expression with only a single operand.
__construct(string $operator, mixed $value, integer $mode = self::PREFIX)
Constructor
string | $operator | The operator to used for the expression |
mixed | $value | the value to use as the operand for the expression |
integer | $mode | either UnaryExpression::PREFIX or UnaryExpression::POSTFIX |
sql(\Cake\Database\ValueBinder $generator) : string
Converts the expression to its string representation
\Cake\Database\ValueBinder | $generator | Placeholder generator object |
Loading…