| Conditions | 5 |
| Paths | 2 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 5 |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | 9 | public function __invoke($value) : string |
|
| 30 | { |
||
| 31 | 9 | if ($value !== null && !is_scalar($value) && !(is_object($value) && method_exists($value, '__toString'))) { |
|
| 32 | 2 | throw new InvalidArgumentException('Value could not be converted to string'); |
|
| 33 | } |
||
| 34 | |||
| 35 | 7 | return (string) $value; |
|
| 36 | } |
||
| 37 | } |
||
| 38 |