1 | <?php |
||
30 | trait TableTrait |
||
31 | { |
||
32 | use AbstractTrait; |
||
33 | |||
34 | /** |
||
35 | * {@inheritDoc} |
||
36 | */ |
||
37 | public function from($table, /*# string */ $alias = '') |
||
51 | |||
52 | /** |
||
53 | * {@inheritDoc} |
||
54 | */ |
||
55 | public function table($table, /*# string */ $alias = '') |
||
61 | |||
62 | /** |
||
63 | * from multiple tables |
||
64 | * |
||
65 | * @param array $tables |
||
66 | * @access protected |
||
67 | */ |
||
68 | protected function multipleFrom(array $tables) |
||
78 | |||
79 | /** |
||
80 | * Build TABLE |
||
81 | * |
||
82 | * @param string $prefix |
||
83 | * @param array $settings |
||
84 | * @return array |
||
85 | * @access protected |
||
86 | */ |
||
87 | protected function buildTable( |
||
93 | } |
||
94 |