Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | public function crear(array $array): object |
||
17 | { |
||
18 | $conexion = new CrearConexionBaseDeDatos; |
||
19 | $conexion = $conexion->crear([]); |
||
20 | |||
21 | return new ConsultaUpdate( |
||
22 | new EjecutarConsultaConDatos( |
||
23 | $conexion |
||
24 | ), |
||
25 | new SentenciaUpdate( |
||
26 | new Tabla($array['tabla']), |
||
27 | new ElementoUpdate( |
||
28 | $array['valores'], |
||
29 | new Where( |
||
30 | new ValidadorDeParametrosWhere($array['where']) |
||
31 | ) |
||
36 | } |