| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 2 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | public function __construct( |
||
| 23 | array $errors, |
||
| 24 | string $message = 'Invalid Data', |
||
| 25 | int $statusCode = Response::HTTP_UNPROCESSABLE_ENTITY, |
||
| 26 | \Exception $previous = null, |
||
| 27 | array $headers = [], |
||
| 28 | ?int $code = 0 |
||
| 29 | ) { |
||
| 30 | parent::__construct($statusCode, $message, $previous, $headers, $code); |
||
| 31 | |||
| 32 | $this->errors = $errors; |
||
| 33 | } |
||
| 40 |