We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | 3 | public function __construct( |
|
| 17 | string $name, |
||
| 18 | ConstraintViolationListInterface $errors, |
||
| 19 | string $message = '', |
||
| 20 | int $code = 0, |
||
| 21 | Exception $previous = null |
||
| 22 | ) { |
||
| 23 | 3 | $this->name = $name; |
|
| 24 | 3 | $this->errors = $errors; |
|
| 25 | 3 | parent::__construct($message, $code, $previous); |
|
| 26 | 3 | } |
|
| 38 |