12345678910111213141516171819202122232425262728 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Braintree\Gateway\Request;
- use Magento\Payment\Gateway\Request\BuilderInterface;
- /**
- * Class SettlementDataBuilder
- */
- class SettlementDataBuilder implements BuilderInterface
- {
- const SUBMIT_FOR_SETTLEMENT = 'submitForSettlement';
- /**
- * @inheritdoc
- */
- public function build(array $buildSubject)
- {
- return [
- 'options' => [
- self::SUBMIT_FOR_SETTLEMENT => true
- ]
- ];
- }
- }
|