Total Complexity | 3 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
11 | final class PackageNotInstalledException extends Exception implements FriendlyExceptionInterface |
||
12 | { |
||
13 | public function __construct( |
||
14 | private string $packageName, |
||
15 | string $message = '', |
||
16 | int $code = 0, |
||
17 | ?Throwable $previous = null |
||
18 | ) { |
||
19 | parent::__construct($message, $code, $previous); |
||
20 | } |
||
21 | |||
22 | public function getName(): string |
||
27 | ); |
||
28 | } |
||
29 | |||
30 | public function getSolution(): string |
||
37 | MARKDOWN; |
||
38 | } |
||
40 |