Total Complexity | 4 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
6 | class Insert |
||
7 | { |
||
8 | private $_tabla; |
||
9 | private $_valoresAInsertar; |
||
10 | |||
11 | public function __construct |
||
12 | ( |
||
13 | Tabla $Tabla, |
||
14 | ValoresAInsertar $ValoresAInsertar |
||
15 | ) |
||
16 | { |
||
17 | $this->_tabla = $Tabla; |
||
18 | $this->_valoresAInsertar = $ValoresAInsertar; |
||
19 | } |
||
20 | |||
21 | public function insert(): string |
||
40 | } |
||
41 | } |