/var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/cakephp/src/Database/Expression
NameSizeModeActions
AggregateExpression.php58400644editdlrm
BetweenExpression.php41460644editdlrm
CaseExpression.php81460644editdlrm
CommonTableExpression.php56600644editdlrm
Comparison.php1890644editdlrm
ComparisonExpression.php95130644editdlrm
FieldInterface.php11850644editdlrm
FieldTrait.php13840644editdlrm
FunctionExpression.php62710644editdlrm
IdentifierExpression.php22220644editdlrm
OrderByExpression.php30150644editdlrm
OrderClauseExpression.php22640644editdlrm
QueryExpression.php299490644editdlrm
TupleComparison.php64630644editdlrm
UnaryExpression.php30490644editdlrm
ValuesExpression.php85680644editdlrm
WindowExpression.php80500644editdlrm
WindowInterface.php46600644editdlrm
Edit: /var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/cakephp/src/Database/Expression/BetweenExpression.php (4146B)
_castToExpression($from, $type); $to = $this->_castToExpression($to, $type); } $this->_field = $field; $this->_from = $from; $this->_to = $to; $this->_type = $type; } /** * Converts the expression to its string representation * * @param \Cake\Database\ValueBinder $generator Placeholder generator object * @return string */ public function sql(ValueBinder $generator): string { $parts = [ 'from' => $this->_from, 'to' => $this->_to, ]; /** @var string|\Cake\Database\ExpressionInterface $field */ $field = $this->_field; if ($field instanceof ExpressionInterface) { $field = $field->sql($generator); } foreach ($parts as $name => $part) { if ($part instanceof ExpressionInterface) { $parts[$name] = $part->sql($generator); continue; } $parts[$name] = $this->_bindValue($part, $generator, $this->_type); } return sprintf('%s BETWEEN %s AND %s', $field, $parts['from'], $parts['to']); } /** * @inheritDoc */ public function traverse(Closure $visitor) { foreach ([$this->_field, $this->_from, $this->_to] as $part) { if ($part instanceof ExpressionInterface) { $visitor($part); } } return $this; } /** * Registers a value in the placeholder generator and returns the generated placeholder * * @param mixed $value The value to bind * @param \Cake\Database\ValueBinder $generator The value binder to use * @param string $type The type of $value * @return string generated placeholder */ protected function _bindValue($value, $generator, $type): string { $placeholder = $generator->placeholder('c'); $generator->bind($placeholder, $value, $type); return $placeholder; } /** * Do a deep clone of this expression. * * @return void */ public function __clone() { foreach (['_field', '_from', '_to'] as $part) { if ($this->{$part} instanceof ExpressionInterface) { $this->{$part} = clone $this->{$part}; } } } }