| 1 | <?php |
||
| 36 | class Insert extends StatementAbstract implements InsertStatementInterface |
||
| 37 | { |
||
| 38 | use ClauseTrait, TableTrait, SetTrait; |
||
| 39 | |||
| 40 | /** |
||
| 41 | * {@inheritDoc} |
||
| 42 | */ |
||
| 43 | public function into(/*# string */ $table) |
||
| 44 | { |
||
| 45 | return $this->table($table); |
||
| 46 | } |
||
| 47 | |||
| 48 | /** |
||
| 49 | * INSERT ... SELECT |
||
| 50 | * |
||
| 51 | * {@inheritDoc} |
||
| 52 | */ |
||
| 53 | public function select()/*# : SelectStatementInterface */ { |
||
| 59 | |||
| 60 | /** |
||
| 61 | * {@inheritDoc} |
||
| 62 | */ |
||
| 63 | protected function getConfigs()/*# : array */ |
||
| 71 | |||
| 72 | /** |
||
| 73 | * {@inheritDoc} |
||
| 74 | */ |
||
| 75 | protected function getType()/*# : string */ |
||
| 79 | } |
||
| 80 |