Passed
Push — master ( 745713...423bfb )
by Darío
07:06 queued 04:58
created

StorePlanRequest::toArray()   A

Complexity

Conditions 4
Paths 8

Size

Total Lines 24
Code Lines 13

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 11
CRAP Score 4.0582

Importance

Changes 0
Metric Value
eloc 13
dl 0
loc 24
ccs 11
cts 13
cp 0.8462
rs 9.8333
c 0
b 0
f 0
cc 4
nc 8
nop 0
crap 4.0582
1
<?php
2
3
namespace PaymentGateway\PayPalSdk\Subscriptions\Requests;
4
5
use PaymentGateway\PayPalSdk\Products\Concerns\HasDescription;
6
use PaymentGateway\PayPalSdk\Subscriptions\Concerns\HasPlanStatus;
7
use PaymentGateway\PayPalSdk\Subscriptions\BillingCycles\BillingCycleSet;
8
use PaymentGateway\PayPalSdk\Subscriptions\Concerns\HasPaymentPreferences;
9
use PaymentGateway\PayPalSdk\Subscriptions\Constants\CurrencyCode;
10
use PaymentGateway\PayPalSdk\Subscriptions\Money;
11
use PaymentGateway\PayPalSdk\Subscriptions\PaymentPreferences;
12
13
class StorePlanRequest
14
{
15
    use HasDescription;
16
    use HasPlanStatus;
17
    use HasPaymentPreferences;
18
19
    protected string $productId;
20
    protected string $name;
21
22
    protected BillingCycleSet $billingCycleSet;
23
24 4
    public function __construct(string $productId, string $name, BillingCycleSet $billingCycleSet)
25
    {
26 4
        $this->productId = $productId;
27 4
        $this->name = $name;
28 4
        $this->billingCycleSet = $billingCycleSet;
29 4
    }
30
31
    public function getProductId(): string
32
    {
33
        return $this->productId;
34
    }
35
36
    public function setProductId(string $productId): self
37
    {
38
        $this->productId = $productId;
39
40
        return $this;
41
    }
42
43
    public function getName(): string
44
    {
45
        return $this->name;
46
    }
47
48
    public function setName(string $name): self
49
    {
50
        $this->name = $name;
51
52
        return $this;
53
    }
54
55
    public function getBillingCycleSet(): BillingCycleSet
56
    {
57
        return $this->billingCycleSet;
58
    }
59
60
    public function setBillingCycleSet(BillingCycleSet $billingCycleSet): self
61
    {
62
        $this->billingCycleSet = $billingCycleSet;
63
64
        return $this;
65
    }
66
67 4
    public function toArray(): array
68
    {
69
        $request = [
70 4
            'product_id' => $this->productId,
71 4
            'name' => $this->name,
72 4
            'billing_cycles' => $this->billingCycleSet->toArray()
73
        ];
74
75 4
        if ($this->description ?? null) {
76
            $request['description'] = $this->description;
77
        }
78
79 4
        if ($this->planStatus ?? null) {
80
            $request['status'] = $this->planStatus;
81
        }
82
83 4
        if (!($this->paymentPreferences ?? null)) {
84 4
            $money = new Money(CurrencyCode::UNITED_STATES_DOLLAR, '0');
85 4
            $this->paymentPreferences = new PaymentPreferences($money);
86
        }
87
88 4
        $request['payment_preferences'] = $this->paymentPreferences->toArray();
89
90 4
        return $request;
91
    }
92
}
93