Andx.php
9 months ago
Base.php
9 months ago
Comparison.php
9 months ago
Composite.php
9 months ago
From.php
9 months ago
Func.php
9 months ago
GroupBy.php
9 months ago
Join.php
9 months ago
Literal.php
9 months ago
Math.php
9 months ago
OrderBy.php
9 months ago
Orx.php
9 months ago
Select.php
9 months ago
index.php
9 months ago
Select.php
16 lines
| 1 | <?php |
| 2 | declare (strict_types=1); |
| 3 | namespace MailPoetVendor\Doctrine\ORM\Query\Expr; |
| 4 | if (!defined('ABSPATH')) exit; |
| 5 | class Select extends Base |
| 6 | { |
| 7 | protected $preSeparator = ''; |
| 8 | protected $postSeparator = ''; |
| 9 | protected $allowedClasses = [Func::class]; |
| 10 | protected $parts = []; |
| 11 | public function getParts() |
| 12 | { |
| 13 | return $this->parts; |
| 14 | } |
| 15 | } |
| 16 |