| Total Complexity | 2 | 
| Total Lines | 14 | 
| Duplicated Lines | 0 % | 
| Coverage | 100% | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 8 | class ConsultaSelect  | 
            ||
| 9 | { | 
            ||
| 10 | private $_ejecutar;  | 
            ||
| 11 | private $_sentencia;  | 
            ||
| 12 | |||
| 13 | 2 | public function __construct(EjecutarConsultaSinDatos $ejecutarConsultaSinDatos, SentenciaSelect $sentenciaSelect)  | 
            |
| 14 |     { | 
            ||
| 15 | 2 | $this->_ejecutar = $ejecutarConsultaSinDatos;  | 
            |
| 16 | 2 | $this->_sentencia = $sentenciaSelect;  | 
            |
| 17 | 2 | }  | 
            |
| 18 | |||
| 19 | 1 | public function obtener(): PDOStatement  | 
            |
| 22 | }  | 
            ||
| 23 | }  |