Test Failed
Pull Request — master (#368)
by
unknown
14:35
created

ListVirtualCards::__construct()   B

Complexity

Conditions 8
Paths 128

Size

Total Lines 30

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 30
rs 8.0088
c 0
b 0
f 0
cc 8
nc 128
nop 2
1
<?php
2
3
/**
4
 * amadeus-ws-client
5
 *
6
 * Copyright 2015 Amadeus Benelux NV
7
 *
8
 * Licensed under the Apache License, Version 2.0 (the "License");
9
 * you may not use this file except in compliance with the License.
10
 * You may obtain a copy of the License at
11
 *
12
 * http://www.apache.org/licenses/LICENSE-2.0
13
 *
14
 * Unless required by applicable law or agreed to in writing, software
15
 * distributed under the License is distributed on an "AS IS" BASIS,
16
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17
 * See the License for the specific language governing permissions and
18
 * limitations under the License.
19
 *
20
 * @package Amadeus
21
 * @license https://opensource.org/licenses/Apache-2.0 Apache 2.0
22
 */
23
24
namespace Amadeus\Client\Struct\Pay;
25
26
use Amadeus\Client\Struct\BaseWsMessage;
27
use Amadeus\Client\RequestOptions\PayListVirtualCardsOptions;
28
29
/**
30
 * ListVirtualCards
31
 *
32
 * @package Amadeus\Client\Struct\Pay
33
 * @author Konstantin Bogomolov <[email protected]>
34
 */
35
class ListVirtualCards extends BaseWsMessage
36
{
37
    public $Version = '2.0';
38
39
    /**
40
     * @var string
41
     */
42
    public $SubType;
43
44
    /**
45
     * @var string
46
     */
47
    public $VendorCode;
48
49
    /**
50
     * @var AmountRange
51
     */
52
    public $AmountRange;
53
54
    /**
55
     * @var string
56
     */
57
    public $CurrencyCode;
58
59
    /**
60
     * @var Period
61
     */
62
    public $Period;
63
64
    /**
65
     * @var string
66
     */
67
    public $CardStatus;
68
69
    /**
70
     * @var Reservation
71
     */
72
    public $Reservation;
73
74
    /**
75
     * ListVirtualCards constructor.
76
     * @param PayListVirtualCardsOptions $params
77
     * @param string|int                 $version
78
     */
79
    public function __construct(PayListVirtualCardsOptions $params, $version)
0 ignored issues
show
Unused Code introduced by
The parameter $version is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
80
    {
81
        if ($params->SubType !== null) {
82
            $this->SubType = $params->SubType;
83
        }
84
85
        if ($params->VendorCode !== null) {
86
            $this->VendorCode = $params->VendorCode;
87
        }
88
89
        if ($params->AmountRange !== null) {
90
            $this->AmountRange = new AmountRange($params);
91
        }
92
93
        if ($params->CurrencyCode !== null) {
94
            $this->CurrencyCode = $params->CurrencyCode;
95
        }
96
97
        if ($params->Period !== null) {
98
            $this->Period = new Period($params);
99
        }
100
101
        if ($params->CardStatus !== null) {
102
            $this->CardStatus = $params->CardStatus;
103
        }
104
105
        if ($params->Reservation !== null) {
106
            $this->Reservation = new Reservation($params);
107
        }
108
    }
109
}
110