1 | <?php |
||
17 | class SelectClauseExpression extends QueryClauseExpression |
||
18 | { |
||
19 | /** |
||
20 | * @var ExpressionInterface $hints |
||
21 | */ |
||
22 | private $hints; |
||
23 | |||
24 | /** |
||
25 | * @param ExpressionInterface $hints |
||
26 | * @param ExpressionInterface $expression |
||
27 | * @param bool $quietWhenEmpty |
||
28 | */ |
||
29 | 21 | public function __construct(ExpressionInterface $hints, ExpressionInterface $expression, $quietWhenEmpty = true) |
|
34 | |||
35 | /** |
||
36 | * @inheritdoc |
||
37 | */ |
||
38 | 21 | public function isEmpty() |
|
48 | |||
49 | /** |
||
50 | * @inheritdoc |
||
51 | */ |
||
52 | 21 | public function compile() |
|
64 | } |