Total Complexity | 3 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class SentenciaUpdate |
||
8 | { |
||
9 | private $_tabla; |
||
10 | private $_update; |
||
11 | |||
12 | 8 | public function __construct(Tabla $tabla, Update $update) |
|
13 | { |
||
14 | 8 | $this->_tabla = $tabla; |
|
15 | 8 | $this->_update = $update; |
|
16 | 8 | } |
|
17 | |||
18 | 2 | public function sql(): string |
|
21 | } |
||
22 | |||
23 | 2 | public function datos(): array |
|
26 | } |
||
27 | } |