Conditions | 3 |
Paths | 4 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
44 | public function __construct(PayGenerateVirtualCardOptions $params) |
||
45 | { |
||
46 | if ($params->maxAllowedTransactions !== null) { |
||
47 | $this->AllowedTransactions = new AllowedTransactions($params); |
||
48 | } |
||
49 | |||
50 | if ($params->endValidityPeriod !== null) { |
||
51 | $this->ValidityPeriod = new ValidityPeriod($params); |
||
52 | } |
||
55 |