mirror of
https://github.com/doctrine/orm.git
synced 2026-04-02 20:32:19 +02:00
23 lines
553 B
PHP
23 lines
553 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Doctrine\ORM\Query\AST;
|
|
|
|
/** @phpstan-ignore class.extendsDeprecatedClass */
|
|
class InSubselectExpression extends InExpression
|
|
{
|
|
/** @var Subselect */
|
|
public $subselect;
|
|
|
|
public function __construct(ArithmeticExpression $expression, Subselect $subselect, bool $not = false)
|
|
{
|
|
$this->subselect = $subselect;
|
|
// @phpstan-ignore property.deprecatedClass
|
|
$this->not = $not;
|
|
|
|
// @phpstan-ignore method.deprecatedClass
|
|
parent::__construct($expression);
|
|
}
|
|
}
|