| Conditions | 4 |
| Paths | 3 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 4 |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 21 | 7 | public function pack(array $records): string |
|
| 22 | { |
||
| 23 | 7 | $line = reset($records); |
|
| 24 | 7 | if (false !== $line && is_array($line)) { |
|
| 25 | 6 | $content = reset($line); |
|
| 26 | 6 | if (false !== $content) { |
|
| 27 | 6 | return strval($content); |
|
| 28 | } |
||
| 29 | } |
||
| 30 | 1 | throw new MapperException('Cannot pack single page into data stream'); |
|
| 31 | } |
||
| 33 |