summaryrefslogtreecommitdiff
path: root/vendor/doctrine/orm/src/Query/Expr/From.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/doctrine/orm/src/Query/Expr/From.php')
-rw-r--r--vendor/doctrine/orm/src/Query/Expr/From.php48
1 files changed, 48 insertions, 0 deletions
diff --git a/vendor/doctrine/orm/src/Query/Expr/From.php b/vendor/doctrine/orm/src/Query/Expr/From.php
new file mode 100644
index 0000000..21af078
--- /dev/null
+++ b/vendor/doctrine/orm/src/Query/Expr/From.php
@@ -0,0 +1,48 @@
1<?php
2
3declare(strict_types=1);
4
5namespace Doctrine\ORM\Query\Expr;
6
7use Stringable;
8
9/**
10 * Expression class for DQL from.
11 *
12 * @link www.doctrine-project.org
13 */
14class From implements Stringable
15{
16 /**
17 * @param class-string $from The class name.
18 * @param string $alias The alias of the class.
19 */
20 public function __construct(
21 protected string $from,
22 protected string $alias,
23 protected string|null $indexBy = null,
24 ) {
25 }
26
27 /** @return class-string */
28 public function getFrom(): string
29 {
30 return $this->from;
31 }
32
33 public function getAlias(): string
34 {
35 return $this->alias;
36 }
37
38 public function getIndexBy(): string|null
39 {
40 return $this->indexBy;
41 }
42
43 public function __toString(): string
44 {
45 return $this->from . ' ' . $this->alias .
46 ($this->indexBy ? ' INDEX BY ' . $this->indexBy : '');
47 }
48}