| 1 | <?php |
||
| 13 | class OutOfEnumException extends \OutOfRangeException |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @param string $value |
||
| 17 | * @param string $type |
||
| 18 | * |
||
| 19 | * @return self |
||
| 20 | */ |
||
| 21 | 7 | public static function invalidValue($value, $type) |
|
| 25 | |||
| 26 | /** |
||
| 27 | * @param string $constant |
||
| 28 | * |
||
| 29 | * @return self |
||
| 30 | */ |
||
| 31 | 6 | public static function undefinedConstant($constant) |
|
| 35 | } |
||
| 36 |