Sindbad~EG File Manager
<?php
declare(strict_types=1);
namespace Doctrine\ORM\Query\AST;
/**
* NullComparisonExpression ::= (SingleValuedPathExpression | InputParameter) "IS" ["NOT"] "NULL"
*
* @link www.doctrine-project.org
*/
class NullComparisonExpression extends Node
{
/** @var bool */
public $not;
/** @var Node */
public $expression;
/** @param Node $expression */
public function __construct($expression, bool $not = false)
{
$this->expression = $expression;
$this->not = $not;
}
/**
* {@inheritDoc}
*/
public function dispatch($sqlWalker)
{
return $sqlWalker->walkNullComparisonExpression($this);
}
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists