| Conditions | 3 |
| Paths | 3 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 0 | ||
| 1 | <?php namespace Vindi\Exceptions; |
||
| 44 | public function handleString($errors) |
||
| 45 | { |
||
| 46 | $error_log = ''; |
||
| 47 | |||
| 48 | if (is_string($errors)) |
||
| 49 | return $errors; |
||
| 50 | |||
| 51 | foreach ($errors as $error) |
||
| 52 | $error_log .= "\n[{$error->parameter}] {$error->message}"; |
||
| 53 | |||
| 54 | return "Os seguintes erros de validação foram encontrados:" . $error_log; |
||
| 55 | } |
||
| 56 | } |
||
| 57 |