Total Complexity | 1 |
Total Lines | 13 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class ParseVersionException extends \LogicException |
||
12 | { |
||
13 | /** |
||
14 | * ParseVersionException constructor. |
||
15 | * |
||
16 | * @param string $template |
||
17 | * @param string $given |
||
18 | * @param int $code |
||
19 | * @param \Throwable|null $previous |
||
20 | */ |
||
21 | 1 | public function __construct(string $template, string $given, int $code = 0, \Throwable $previous = null) |
|
26 |