/
home
/
obinna
/
html
/
boaz2
/
vendor
/
doctrine
/
orm
/
lib
/
Doctrine
/
ORM
/
Tools
/
Pagination
/
Upload File
HOME
<?php declare(strict_types=1); namespace Doctrine\ORM\Tools\Pagination; use Doctrine\ORM\Query\AST; use Doctrine\ORM\Query\SqlWalker; use Doctrine\ORM\Utility\PersisterHelper; use RuntimeException; use function count; use function reset; /** * Infers the DBAL type of the #Id (identifier) column of the given query's root entity, and * returns it in place of a real SQL statement. * * Obtaining this type is a necessary intermediate step for \Doctrine\ORM\Tools\Pagination\Paginator. * We can best do this from a tree walker because it gives us access to the AST. * * Returning the type instead of a "real" SQL statement is a slight hack. However, it has the * benefit that the DQL -> root entity id type resolution can be cached in the query cache. */ final class RootTypeWalker extends SqlWalker { public function walkSelectStatement(AST\SelectStatement $AST): string { // Get the root entity and alias from the AST fromClause $from = $AST->fromClause->identificationVariableDeclarations; if (count($from) > 1) { throw new RuntimeException('Can only process queries that select only one FROM component'); } $fromRoot = reset($from); $rootAlias = $fromRoot->rangeVariableDeclaration->aliasIdentificationVariable; $rootClass = $this->getMetadataForDqlAlias($rootAlias); $identifierFieldName = $rootClass->getSingleIdentifierFieldName(); return PersisterHelper::getTypeOfField( $identifierFieldName, $rootClass, $this->getQuery() ->getEntityManager() )[0]; } }