Total Complexity | 3 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class SentenciaDeComparacionColumnaValorValorNegacion implements SentenciaDeComparacionInterface |
||
8 | { |
||
9 | private $_primerValor; |
||
10 | private $_segundoValor; |
||
11 | private $_tercerValor; |
||
12 | |||
13 | public function __construct |
||
14 | ( |
||
15 | UnidadDeValorInterface $UnidadDeValorInterface1, |
||
16 | UnidadDeValorInterface $UnidadDeValorInterface2, |
||
17 | UnidadDeValorInterface $UnidadDeValorInterface3 |
||
18 | ) |
||
19 | { |
||
20 | $this->_primerValor = $UnidadDeValorInterface1; |
||
21 | $this->_segundoValor = $UnidadDeValorInterface2; |
||
22 | $this->_tercerValor = $UnidadDeValorInterface3; |
||
23 | } |
||
24 | |||
25 | public function sql(): string |
||
26 | { |
||
27 | return $this->_primerValor->valor().' NOT BETWEEN ? AND ?'; |
||
28 | } |
||
29 | |||
30 | public function datos(): array |
||
33 | } |
||
34 | } |