Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 10 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | 1 | public function crear(array $array): object |
|
16 | { |
||
17 | 1 | $conexion = new CrearConexionBaseDeDatos; |
|
18 | 1 | $conexion = $conexion->crear([]); |
|
19 | |||
20 | 1 | return new ConsultaSelect( |
|
21 | 1 | new EjecutarConsultaSinDatos( |
|
22 | 1 | $conexion |
|
23 | ), |
||
24 | 1 | new SentenciaSelect( |
|
25 | 1 | new CamposYTabla( |
|
26 | 1 | new Campos($array['campos']), |
|
27 | 1 | new Tabla($array['tabla']) |
|
28 | ) |
||
32 | } |