Total Complexity | 3 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class Where implements WhereInterface |
||
8 | { |
||
9 | public function __construct(ValidadorDeParametrosInterface $ValidadorDeParametrosInterface) |
||
12 | } |
||
13 | |||
14 | public function sql(): string |
||
15 | { |
||
16 | return 'WHERE '.$this->_where[0].' '.$this->_where[1].' ?'; |
||
17 | } |
||
18 | public function datos(): array |
||
21 | } |
||
22 | } |