Conditions | 4 |
Paths | 4 |
Total Lines | 12 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 4 |
Changes | 0 |
1 | <?php |
||
33 | 15 | private function camposNoEstaVacio(array $array): void |
|
34 | { |
||
35 | 15 | if(count($array) == 0) |
|
36 | { |
||
37 | 1 | throw new Exception("Error Processing Request"); |
|
38 | } |
||
39 | |||
40 | 14 | foreach ($array as $value) |
|
41 | { |
||
42 | 14 | if(empty($value)) |
|
43 | { |
||
44 | 1 | throw new Exception("Error Processing Request"); |
|
45 | } |
||
48 | } |