| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 2 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php declare(strict_types=1); |
||
| 19 | public function __construct( |
||
| 20 | string $message = '', |
||
| 21 | int $code = 0, |
||
| 22 | array $errors = [], |
||
| 23 | ?Throwable $previous = null, |
||
| 24 | int $severityLevel = self::SEVERITY_INFO |
||
| 25 | ) { |
||
| 26 | parent::__construct($message, $code, $previous, $severityLevel); |
||
| 27 | |||
| 28 | $this->errors = $errors; |
||
| 29 | } |
||
| 47 |