File "FromClause.php"

Full Path: /home/warrior1/public_html/wp-content/plugins/mailpoet/vendor-prefixed/doctrine/orm/lib/Doctrine/ORM/Query/AST/FromClause.php
File size: 443 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 FromClause extends Node
{
 public $identificationVariableDeclarations = [];
 public function __construct(array $identificationVariableDeclarations)
 {
 $this->identificationVariableDeclarations = $identificationVariableDeclarations;
 }
 public function dispatch($sqlWalker)
 {
 return $sqlWalker->walkFromClause($this);
 }
}