Total Complexity | 1 |
Total Lines | 13 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | abstract class GenericNotFoundException extends OutOfRangeException implements EnumExceptionInterface |
||
11 | { |
||
12 | /** |
||
13 | * @param string $className |
||
14 | * @param string $value |
||
15 | * @param Throwable|null $previous |
||
16 | * @return static |
||
17 | */ |
||
18 | abstract public static function create(string $className, string $value, Throwable $previous = null); |
||
19 | |||
20 | 2 | protected static function formatGenericMessage(string $className, string $typeName, string $value): string |
|
25 |