Total Complexity | 3 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class Update |
||
12 | { |
||
13 | private $_tabla; |
||
14 | private $_donde; |
||
15 | private $_valoresAInsertar; |
||
16 | |||
17 | public function __construct |
||
18 | ( |
||
19 | Tabla $Tabla, |
||
20 | Donde $Donde, |
||
21 | ValoresAInsertar $ValoresAInsertar |
||
22 | ) |
||
23 | { |
||
24 | $this->_tabla = $Tabla; |
||
25 | $this->_donde = $Donde; |
||
26 | $this->_valoresAInsertar = $ValoresAInsertar; |
||
27 | } |
||
28 | |||
29 | public function update(): string |
||
43 | } |
||
44 | } |