diff options
Diffstat (limited to 'vendor/doctrine/orm/src/Query/Expr/From.php')
-rw-r--r-- | vendor/doctrine/orm/src/Query/Expr/From.php | 48 |
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 | |||
3 | declare(strict_types=1); | ||
4 | |||
5 | namespace Doctrine\ORM\Query\Expr; | ||
6 | |||
7 | use Stringable; | ||
8 | |||
9 | /** | ||
10 | * Expression class for DQL from. | ||
11 | * | ||
12 | * @link www.doctrine-project.org | ||
13 | */ | ||
14 | class 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 | } | ||