From.php
4 years ago
Having.php
4 years ago
Join.php
4 years ago
JoinCondition.php
4 years ago
MetaTable.php
4 years ago
OrderBy.php
4 years ago
RawSQL.php
4 years ago
Select.php
4 years ago
Union.php
4 years ago
Where.php
4 years ago
Select.php
30 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Give\Framework\QueryBuilder\Clauses; |
| 4 | |
| 5 | /** |
| 6 | * @since 2.19.0 |
| 7 | */ |
| 8 | class Select |
| 9 | { |
| 10 | /** |
| 11 | * @var string |
| 12 | */ |
| 13 | public $column; |
| 14 | |
| 15 | /** |
| 16 | * @var string |
| 17 | */ |
| 18 | public $alias; |
| 19 | |
| 20 | /** |
| 21 | * @param string $column |
| 22 | * @param string|null $alias |
| 23 | */ |
| 24 | public function __construct($column, $alias = null) |
| 25 | { |
| 26 | $this->column = trim($column); |
| 27 | $this->alias = trim($alias); |
| 28 | } |
| 29 | } |
| 30 |