Conditions | 1 |
Paths | 1 |
Total Lines | 18 |
Code Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | public function crear(array $array): ConsultaSelectSelectWhere |
||
21 | { |
||
22 | $conexion = new CrearConexionBaseDeDatos; |
||
23 | |||
24 | return new ConsultaSelectSelectWhere( |
||
25 | new EjecutarConsultaConDatos( |
||
26 | $conexion->crear([]) |
||
27 | ), |
||
28 | new SelectSelectWhere( |
||
29 | new Select( |
||
30 | new Tabla($array['tabla']), |
||
31 | new Campos($array['campos']) |
||
32 | ), |
||
33 | new Where( |
||
34 | new SentenciaDeComparacionColumnaOperadorValor( |
||
35 | new Columna($array['where'][0]), |
||
36 | new Operador($array['where'][1]), |
||
37 | new Valor($array['where'][2]) |
||
38 | ) |
||
43 | } |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths