vendor/doctrine/orm/src/Query/Expr/Select.php line 12

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Doctrine\ORM\Query\Expr;
  4. /**
  5.  * Expression class for building DQL select statements.
  6.  *
  7.  * @link    www.doctrine-project.org
  8.  */
  9. class Select extends Base
  10. {
  11.     protected string $preSeparator  '';
  12.     protected string $postSeparator '';
  13.     /** @var string[] */
  14.     protected array $allowedClasses = [Func::class];
  15.     /** @psalm-var list<string|Func> */
  16.     protected array $parts = [];
  17.     /** @psalm-return list<string|Func> */
  18.     public function getParts(): array
  19.     {
  20.         return $this->parts;
  21.     }
  22. }