Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | final class UnexpectedEndOfInputException extends OutOfRangeException implements ExceptionInterface |
||
11 | { |
||
12 | |||
13 | /** |
||
14 | * @var int |
||
15 | */ |
||
16 | private $offset; |
||
17 | |||
18 | 5 | public function __construct(int $offset, Throwable $previous = null) |
|
22 | 5 | } |
|
23 | |||
24 | /** |
||
25 | * @return int |
||
26 | * @psalm-pure |
||
27 | */ |
||
28 | 1 | public function getOffset(): int |
|
33 |