Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
37 | private function setDonde(array $columnas): string |
||
38 | { |
||
39 | if(count($columnas) !== 3) |
||
40 | { |
||
41 | throw new Exception("Elementos faltantes o sobrantes en la sentencia WHERE", 1); |
||
42 | } |
||
43 | |||
44 | $this->operadorValido($columnas[1]); |
||
45 | |||
46 | $this->_datos = $this->setDatos($columnas); |
||
47 | |||
48 | return ' WHERE '.$columnas[0].' '.$columnas[1].' ? '; |
||
49 | } |
||
63 | } |