| Conditions | 2 |
| Paths | 2 |
| Total Lines | 6 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 48 | 6 | public static function createFromString(string $string): self |
|
| 49 | { |
||
| 50 | 6 | if (filter_var($string, FILTER_VALIDATE_INT) !== false) { |
|
| 51 | 4 | return new static((int)$string); |
|
| 52 | } |
||
| 53 | 3 | throw new InvalidVOArgumentException('Value is invalid. Allowed type is integer, float, double, real', $string); |
|
| 54 | } |
||
| 56 |