FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
mailpoet
/
vendor-prefixed
/
doctrine
/
orm
/
src
/
Query
/
AST
Edit File: PathExpression.php
<?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); } }
Save
Back