File: /var/www/payments-gateway/vendor/doctrine/orm/src/Query/Expr/Orx.php
<?php
declare(strict_types=1);
namespace Doctrine\ORM\Query\Expr;
/**
* Expression class for building DQL OR clauses.
*
* @link www.doctrine-project.org
*/
class Orx extends Composite
{
protected string $separator = ' OR ';
/** @var string[] */
protected array $allowedClasses = [
Comparison::class,
Func::class,
Andx::class,
self::class,
];
/** @phpstan-var list<string|Comparison|Func|Andx|self> */
protected array $parts = [];
/** @phpstan-return list<string|Comparison|Func|Andx|self> */
public function getParts(): array
{
return $this->parts;
}
}