Total Complexity | 1 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
22 | abstract class Base extends \Aimeos\MShop\Service\Provider\Base implements Iface |
||
23 | { |
||
24 | /** |
||
25 | * Feature constant if querying for status updates for an order is supported. |
||
26 | */ |
||
27 | const FEAT_QUERY = 1; |
||
28 | |||
29 | |||
30 | /** |
||
31 | * Sets the delivery attributes in the given service. |
||
32 | * |
||
33 | * @param \Aimeos\MShop\Order\Item\Service\Iface $orderServiceItem Order service item that will be added to the basket |
||
34 | * @param array $attributes Attribute key/value pairs entered by the customer during the checkout process |
||
35 | * @return \Aimeos\MShop\Order\Item\Service\Iface Order service item with attributes added |
||
36 | */ |
||
37 | public function setConfigFE( \Aimeos\MShop\Order\Item\Service\Iface $orderServiceItem, |
||
43 |