File "JoinAssociationPathExpression.php"

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