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