1 | <?php |
||
18 | abstract class AbstractSetQuery implements QueryInterface, QueryPartInterface |
||
19 | { |
||
20 | /** |
||
21 | * @var array |
||
22 | */ |
||
23 | protected $union = []; |
||
24 | |||
25 | /** |
||
26 | * @param Select $select |
||
27 | * |
||
28 | * @return $this |
||
29 | */ |
||
30 | public function add(Select $select) |
||
36 | |||
37 | /** |
||
38 | * @return array |
||
39 | */ |
||
40 | public function getUnions() |
||
44 | |||
45 | /** |
||
46 | * @throws QueryException |
||
47 | * |
||
48 | * @return \NilPortugues\Sql\QueryBuilder\Syntax\Table |
||
49 | */ |
||
50 | public function getTable() |
||
56 | |||
57 | /** |
||
58 | * @throws QueryException |
||
59 | * |
||
60 | * @return \NilPortugues\Sql\QueryBuilder\Syntax\Where |
||
61 | */ |
||
62 | public function getWhere() |
||
68 | |||
69 | /** |
||
70 | * @throws QueryException |
||
71 | * |
||
72 | * @return \NilPortugues\Sql\QueryBuilder\Syntax\Where |
||
73 | */ |
||
74 | public function where() |
||
80 | } |
||
81 |