Conditions | 1 |
Paths | 1 |
Total Lines | 4 |
Code Lines | 2 |
Lines | 0 |
Ratio | 0 % |
Tests | 3 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
11 | 6 | public function __construct(string $filename, ?Throwable $previous = null) |
|
12 | { |
||
13 | 6 | $message = \sprintf('Malformed archive %s. Perhaps it is corrupted or was archived using an older API. Try recreating the archive.', $filename); |
|
14 | 6 | parent::__construct($filename, $message, $previous); |
|
15 | 6 | } |
|
17 |