File "NullIfExpression.php"

Full Path: /home/warrior1/public_html/languages/wp-content/plugins/mailpoet/vendor-prefixed/doctrine/orm/lib/Doctrine/ORM/Query/AST/NullIfExpression.php
File size: 460 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
declare (strict_types=1);
namespace MailPoetVendor\Doctrine\ORM\Query\AST;
if (!defined('ABSPATH')) exit;
class NullIfExpression extends Node
{
 public $firstExpression;
 public $secondExpression;
 public function __construct($firstExpression, $secondExpression)
 {
 $this->firstExpression = $firstExpression;
 $this->secondExpression = $secondExpression;
 }
 public function dispatch($sqlWalker)
 {
 return $sqlWalker->walkNullIfExpression($this);
 }
}