Total Complexity | 3 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class SentenciaDeComparacionColumnaValorValor implements SentenciaDeComparacionInterface |
||
8 | { |
||
9 | private $_primerValor; |
||
10 | private $_segundoValor; |
||
11 | private $_tercerValor; |
||
12 | |||
13 | public function __construct |
||
23 | } |
||
24 | |||
25 | public function sql(): string |
||
26 | { |
||
27 | return $this->_primerValor->valor().' BETWEEN ? AND ?'; |
||
28 | } |
||
29 | |||
30 | public function datos(): array |
||
33 | } |
||
34 | } |