| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | 1 | public static function serializeList($objectList) |
|
| 19 | { |
||
| 20 | 1 | $objectList = $objectList ?: []; |
|
| 21 | |||
| 22 | 1 | $iteratorMapper = new IteratorMapper(function ($object) { |
|
| 23 | /** @var SerializableInterface $object */ |
||
| 24 | 1 | return $object->serialize(); |
|
| 25 | 1 | }); |
|
| 26 | |||
| 27 | 1 | return iterator_to_array($iteratorMapper($objectList)); |
|
| 28 | } |
||
| 29 | |||
| 49 | } |