Total Complexity | 1 |
Total Lines | 11 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class IntersectingPointersException extends Exception implements JsonParserException |
||
13 | { |
||
14 | /** |
||
15 | * Instantiate the class. |
||
16 | * |
||
17 | * @param Pointer $pointer1 |
||
18 | * @param Pointer $pointer2 |
||
19 | */ |
||
20 | 8 | public function __construct(public readonly Pointer $pointer1, public readonly Pointer $pointer2) |
|
25 |