Conditions | 2 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
9 | public function __construct(array $errors = []) |
||
10 | { |
||
11 | $this->errors = $errors; |
||
12 | |||
13 | parent::__construct( |
||
14 | config('shopify.exceptions.include_validation_errors', false) |
||
15 | ? 'Validation failed due to: '.json_encode($this->errors) |
||
16 | : 'The given data failed to pass validation.' |
||
17 | ); |
||
20 |