Total Complexity | 3 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
10 | #[Package('core')] |
||
11 | class InstallerException extends \RuntimeException |
||
12 | { |
||
13 | public static function cannotFindShopwareInstallation(): self |
||
14 | { |
||
15 | return new self('Could not find Shopware installation'); |
||
16 | } |
||
17 | |||
18 | public static function cannotFindComposerLock(): self |
||
21 | } |
||
22 | |||
23 | public static function cannotFindShopwareInComposerLock(): self |
||
26 | } |
||
27 | } |
||
28 |