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. /** @var string */
  12. protected $preSeparator = '';
  13. /** @var string */
  14. protected $postSeparator = '';
  15. /** @var string[] */
  16. protected $allowedClasses = [Func::class];
  17. /** @phpstan-var list<string|Func> */
  18. protected $parts = [];
  19. /** @phpstan-return list<string|Func> */
  20. public function getParts()
  21. {
  22. return $this->parts;
  23. }
  24. }