Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
13 | 2 | public function __construct(string $code, string $errorMessage, string $helpUrl, int $line, int $col) |
|
14 | { |
||
15 | 2 | $this->code = $code; |
|
16 | 2 | $this->errorMessage = $errorMessage; |
|
17 | 2 | $this->helpUrl = $helpUrl; |
|
18 | 2 | $this->line = $line; |
|
19 | 2 | $this->col = $col; |
|
20 | 2 | } |
|
21 | |||
47 |