Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/paypal/module-braintree-core/Gateway/Request/
Upload File :
Current File : //home/rtorresani/www/vendor/paypal/module-braintree-core/Gateway/Request/ChannelDataBuilder.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace PayPal\Braintree\Gateway\Request;

use Magento\Payment\Gateway\Request\BuilderInterface;
use Magento\Framework\App\ProductMetadataInterface;

class ChannelDataBuilder implements BuilderInterface
{
    /**
     * @var string $channel
     */
    private static $channel = 'channel';

    /**
     * @var string $channelValue
     */
    private static $channelValue = 'Magento2GeneBT';

    /**
     * @inheritdoc
     */
    public function build(array $buildSubject): array
    {
        return [
            self::$channel => self::$channelValue
        ];
    }
}