| Conditions | 3 |
| Paths | 3 |
| Total Lines | 14 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 3 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 36 | 52 | public static function create($value) |
|
| 37 | { |
||
| 38 | 52 | if (!is_string($value)) { |
|
| 39 | 1 | throw new InvalidIdentifierValueException('Identifier value must be of type string'); |
|
| 40 | } |
||
| 41 | |||
| 42 | 51 | if ($value === '') { |
|
| 43 | 1 | throw new InvalidIdentifierValueException('Identifier must not be empty'); |
|
| 44 | } |
||
| 45 | |||
| 46 | 51 | static::validate($value); |
|
| 47 | |||
| 48 | 49 | return new static($value); |
|
| 49 | } |
||
| 50 | |||
| 69 |