| Total Complexity | 1 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | class MissingAuthenticationException extends RuntimeException implements ProblemDetailsExceptionInterface |
||
| 15 | { |
||
| 16 | use CommonProblemDetailsExceptionTrait; |
||
| 17 | |||
| 18 | private const TITLE = 'Invalid authorization'; |
||
| 19 | private const TYPE = 'INVALID_AUTHORIZATION'; |
||
| 20 | |||
| 21 | 1 | public static function fromExpectedTypes(array $expectedTypes): self |
|
| 37 |