| Total Complexity | 3 | 
| Total Lines | 17 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 7 | class WhereAnd implements WhereInterface  | 
            ||
| 8 | { | 
            ||
| 9 | private $_where;  | 
            ||
| 10 | |||
| 11 | public function __construct(ValidadorDeParametrosInterface $ValidadorDeParametrosInterface)  | 
            ||
| 14 | }  | 
            ||
| 15 | |||
| 16 | public function sql(): string  | 
            ||
| 17 |     { | 
            ||
| 18 | return 'WHERE '.$this->_where[0].' '.$this->_where[1].' ? AND '.$this->_where[3].' '.$this->_where[4].' ?';  | 
            ||
| 19 | }  | 
            ||
| 20 | |||
| 21 | public function datos(): array  | 
            ||
| 24 | }  | 
            ||
| 25 | }  |