Total Complexity | 1 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class MercureException extends RuntimeException implements ProblemDetailsExceptionInterface |
||
13 | { |
||
14 | use CommonProblemDetailsExceptionTrait; |
||
15 | |||
16 | private const TITLE = 'Mercure integration not configured'; |
||
17 | private const TYPE = 'MERCURE_NOT_CONFIGURED'; |
||
18 | |||
19 | 4 | public static function mercureNotConfigured(?Throwable $prev = null): self |
|
31 |