| Total Complexity | 2 |
| Total Lines | 10 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | final class StorageFailure extends RuntimeException |
||
| 11 | { |
||
| 12 | public static function unsupported(string $storage): self |
||
| 13 | { |
||
| 14 | return new self(sprintf('Storage "%s" is not supported.', $storage)); |
||
| 15 | } |
||
| 16 | |||
| 17 | public static function invalidWrite(string $key, Throwable $e = null): self |
||
| 20 | } |
||
| 21 | } |
||
| 22 |