| Conditions | 3 |
| Paths | 4 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 36 | public function processBatch( iterable $orders ) : \Aimeos\Map |
||
| 37 | { |
||
| 38 | foreach( $orders as $key => $order ) { |
||
| 39 | $orders[$key] = $this->object()->process( $order ); |
||
| 40 | } |
||
| 41 | |||
| 42 | return map( $orders ); |
||
| 43 | } |
||
| 44 | |||
| 45 | |||
| 46 | /** |
||
| 47 | * Sets the delivery attributes in the given service. |
||
| 48 | * |
||
| 49 | * @param \Aimeos\MShop\Order\Item\Base\Service\Iface $orderServiceItem Order service item that will be added to the basket |
||
| 59 |