| Conditions | 2 |
| Paths | 2 |
| Total Lines | 6 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 3 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php namespace Vindi\Exceptions; |
||
| 12 | public function __construct($status, $errors, array $lastOptions = []) |
||
| 13 | 4 | { |
|
| 14 | parent::__construct($status, $errors, $lastOptions); |
||
| 15 | 4 | ||
| 16 | 4 | $this->message = env('VINDI_EXCEPTION_AS_JSON', false) ? $this->handleJson($errors) : $this->handleString($errors); |
|
| 17 | } |
||
| 18 | |||
| 57 |