1 | <?php |
||
19 | class InsertBuilder extends AbstractBuilder implements |
||
20 | Clause\InsertColumnsClauseInterface, |
||
21 | Component\InsertValuesComponentInterface, |
||
22 | Component\QueryComponentInterface, |
||
23 | Component\TableComponentInterface |
||
24 | { |
||
25 | use Clause\InsertColumnsClauseTrait; |
||
26 | use Component\InsertValuesComponentTrait; |
||
27 | use Component\QueryComponentTrait; |
||
28 | use Component\TableComponentTrait; |
||
29 | |||
30 | /** |
||
31 | * @param mixed $table |
||
32 | * |
||
33 | * @return AbstractTable |
||
34 | */ |
||
35 | 1 | public function insert($table) |
|
39 | } |