File "SimpleSelectExpression.php"

Full Path: /home/warrior1/public_html/languages/wp-content/plugins/mailpoet/vendor-prefixed/doctrine/orm/lib/Doctrine/ORM/Query/AST/SimpleSelectExpression.php
File size: 398 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 SimpleSelectExpression extends Node
{
 public $expression;
 public $fieldIdentificationVariable;
 public function __construct($expression)
 {
 $this->expression = $expression;
 }
 public function dispatch($sqlWalker)
 {
 return $sqlWalker->walkSimpleSelectExpression($this);
 }
}