File "PathExpression.php"

Full Path: /home/warrior1/public_html/languages/wp-content-20241001222009/plugins/mailpoet/vendor-prefixed/doctrine/orm/lib/Doctrine/ORM/Query/AST/PathExpression.php
File size: 672 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 PathExpression extends Node
{
 public const TYPE_COLLECTION_VALUED_ASSOCIATION = 2;
 public const TYPE_SINGLE_VALUED_ASSOCIATION = 4;
 public const TYPE_STATE_FIELD = 8;
 public $type;
 public $expectedType;
 public $identificationVariable;
 public $field;
 public function __construct($expectedType, $identificationVariable, $field = null)
 {
 $this->expectedType = $expectedType;
 $this->identificationVariable = $identificationVariable;
 $this->field = $field;
 }
 public function dispatch($walker)
 {
 return $walker->walkPathExpression($this);
 }
}