Total Complexity | 14 |
Total Lines | 70 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class ValidadorDeParametrosWhereAndOthers implements ValidadorDeParametrosInterface |
||
8 | { |
||
9 | private $_operadoresValidos = [ |
||
10 | '=', |
||
11 | '>', |
||
12 | '<', |
||
13 | '>=', |
||
14 | '<=', |
||
15 | '<>', |
||
16 | '!=', |
||
17 | '!<', |
||
18 | '!>', |
||
19 | 'LIKE', |
||
20 | 'IN', |
||
21 | ]; |
||
22 | |||
23 | private $_datos; |
||
24 | |||
25 | public function __construct(array $datos) |
||
28 | } |
||
29 | |||
30 | public function datos(): array |
||
33 | } |
||
34 | |||
35 | private function setDatos($array): array |
||
43 | } |
||
44 | |||
45 | private function contieneValoresVacios($array): void |
||
52 | } |
||
53 | } |
||
54 | } |
||
55 | |||
56 | private function columnasSonString($array): void |
||
61 | } |
||
62 | } |
||
63 | |||
64 | private function numeroDeElementosValido($array): void |
||
69 | } |
||
70 | } |
||
71 | |||
72 | private function operadorValido($array): void |
||
80 | } |