FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
mailpoet
/
vendor-prefixed
/
doctrine
/
orm
/
src
/
Query
/
AST
Edit File: IndexBy.php
<?php declare (strict_types=1); namespace MailPoetVendor\Doctrine\ORM\Query\AST; if (!defined('ABSPATH')) exit; class IndexBy extends Node { public $singleValuedPathExpression = null; public $simpleStateFieldPathExpression = null; public function __construct(PathExpression $singleValuedPathExpression) { // @phpstan-ignore property.deprecated $this->singleValuedPathExpression = $this->simpleStateFieldPathExpression = $singleValuedPathExpression; } public function dispatch($sqlWalker) { return $sqlWalker->walkIndexBy($this); } }
Save
Back