HEX
Server: Apache
System: Linux WWW 6.1.0-40-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.153-1 (2025-09-20) x86_64
User: web11 (1011)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/payments-gateway/vendor/doctrine/orm/src/Query/Expr/Comparison.php
<?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;
    }
}