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