blob: ec8ef21b2d9d9b19fc183c17d648ca28d91c9612 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
<?php
declare(strict_types=1);
namespace Doctrine\ORM\Query\Expr;
use Stringable;
/**
* Expression class for DQL comparison expressions.
*
* @link www.doctrine-project.org
*/
class Comparison implements Stringable
{
final public const EQ = '=';
final public const NEQ = '<>';
final public const LT = '<';
final public const LTE = '<=';
final public const GT = '>';
final public const GTE = '>=';
/** Creates a comparison expression with the given arguments. */
public function __construct(protected mixed $leftExpr, protected string $operator, protected mixed $rightExpr)
{
}
public function getLeftExpr(): mixed
{
return $this->leftExpr;
}
public function getOperator(): string
{
return $this->operator;
}
public function getRightExpr(): mixed
{
return $this->rightExpr;
}
public function __toString(): string
{
return $this->leftExpr . ' ' . $this->operator . ' ' . $this->rightExpr;
}
}
|