| Total Complexity | 3 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 6 | class SentenciaInsert |
||
| 7 | { |
||
| 8 | private $_donde; |
||
| 9 | private $_insert; |
||
| 10 | |||
| 11 | 4 | public function __construct(Tabla $Donde, Insert $Insert) |
|
| 12 | { |
||
| 13 | 4 | $this->_donde = $Donde; |
|
| 14 | 4 | $this->_insert = $Insert; |
|
| 15 | 4 | } |
|
| 16 | |||
| 17 | 2 | public function sql(): string |
|
| 20 | } |
||
| 21 | |||
| 22 | 2 | public function datos(): array |
|
| 25 | } |
||
| 26 | } |