Updateuser   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 30
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 2

Importance

Changes 0
Metric Value
wmc 1
lcom 1
cbo 2
dl 0
loc 30
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A sendRequest() 0 19 1
1
<?php
2
3
/**
4
 * PAYONE Magento 2 Connector is free software: you can redistribute it and/or modify
5
 * it under the terms of the GNU Lesser General Public License as published by
6
 * the Free Software Foundation, either version 3 of the License, or
7
 * (at your option) any later version.
8
 *
9
 * PAYONE Magento 2 Connector is distributed in the hope that it will be useful,
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 * GNU Lesser General Public License for more details.
13
 *
14
 * You should have received a copy of the GNU Lesser General Public License
15
 * along with PAYONE Magento 2 Connector. If not, see <http://www.gnu.org/licenses/>.
16
 *
17
 * PHP version 5
18
 *
19
 * @category  Payone
20
 * @package   Payone_Magento2_Plugin
21
 * @author    FATCHIP GmbH <[email protected]>
22
 * @copyright 2003 - 2016 Payone GmbH
23
 * @license   <http://www.gnu.org/licenses/> GNU Lesser General Public License
24
 * @link      http://www.payone.de
25
 */
26
27
namespace Payone\Core\Model\Api\Request;
28
29
use Magento\Sales\Model\Order;
30
use Payone\Core\Model\Methods\PayoneMethod;
31
32
/**
33
 * Class for the PAYONE Server API request "updateuser"
34
 */
35
class Updateuser extends AddressRequest
36
{
37
    /**
38
     * Send request "updateuser" to PAYONE server API
39
     *
40
     * @param  Order        $oOrder
41
     * @param  PayoneMethod $oPayment
42
     * @param  string       $sPayOneUserId
43
     * @return array
44
     */
45
    public function sendRequest(Order $oOrder, PayoneMethod $oPayment, $sPayOneUserId)
46
    {
47
        $this->addParameter('request', 'updateuser');
48
        $this->addParameter('mode', $oPayment->getOperationMode());
49
        $this->addParameter('customerid', $sPayOneUserId);
50
51
        $this->setOrderId($oOrder->getRealOrderId());
52
53
        $oBilling = $oOrder->getBillingAddress();
54
        $this->addUserDataParameters(
55
            $oBilling,
56
            $oPayment,
57
            $oOrder->getCustomerGender(),
58
            $oOrder->getCustomerEmail(),
59
            $oOrder->getCustomerDob(),
60
            true
61
        );
62
        return $this->send($oPayment);
63
    }
64
}
65