| Total Complexity | 3 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | class SplitPaymentDataRequest implements BuilderInterface |
||
| 19 | { |
||
| 20 | public const BLOCK_NAME_MARKETPLACE_SUBSELLER_PAYMENTS = 'marketplace_subseller_payments'; |
||
| 21 | public const BLOCK_NAME_SUB_SELLER_ID = 'subseller_id'; |
||
| 22 | public const BLOCK_NAME_SUBSELLER_SALES_AMOUNT = 'subseller_sales_amount'; |
||
| 23 | public const BLOCK_NAME_ORDER_ITEMS = 'order_items'; |
||
| 24 | public const BLOCK_NAME_AMOUNT = 'amount'; |
||
| 25 | public const BLOCK_NAME_CURRENCY = 'currency'; |
||
| 26 | public const BLOCK_NAME_ID = 'id'; |
||
| 27 | public const BLOCK_NAME_DESCRIPTION = 'description'; |
||
| 28 | public const BLOCK_NAME_TAX_AMOUNT = 'tax_amount'; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Build. |
||
| 32 | * |
||
| 33 | * @param array $buildSubject |
||
| 34 | */ |
||
| 35 | public function build(array $buildSubject) |
||
| 48 |