| Conditions | 3 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 3.072 |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 25 | 1 | public function pack(array $records): string |
|
| 26 | { |
||
| 27 | 1 | $result = json_encode($records); |
|
| 28 | 1 | if (false === $result && json_last_error()) { |
|
| 29 | // @codeCoverageIgnoreStart |
||
| 30 | throw new MapperException('Cannot parse JSON output - ' . json_last_error_msg()); |
||
| 31 | } |
||
| 32 | // @codeCoverageIgnoreEnd |
||
| 33 | 1 | return strval($result); |
|
| 34 | } |
||
| 36 |