| 1 | <?php |
||
| 30 | trait IntoTrait |
||
| 31 | { |
||
| 32 | /** |
||
| 33 | * {@inheritDoc} |
||
| 34 | */ |
||
| 35 | public function into(/*# string */ $table) |
||
| 41 | |||
| 42 | /** |
||
| 43 | * Build INTO |
||
| 44 | * |
||
| 45 | * @param string $prefix |
||
| 46 | * @param array $settings |
||
| 47 | * @return string |
||
| 48 | * @access protected |
||
| 49 | */ |
||
| 50 | protected function buildInto( |
||
| 56 | |||
| 57 | abstract protected function getType()/*# : string */; |
||
| 65 | } |
||
| 66 |