Conditions | 3 |
Paths | 3 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 3.4746 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | 1 | public function __construct($response = null) |
|
13 | { |
||
14 | 1 | $this->NetSummaryCharges = new NetSummaryCharges(); |
|
15 | |||
16 | 1 | if (null !== $response) { |
|
17 | if (isset($response->NetSummaryCharges)) { |
||
18 | $this->NetSummaryCharges = new NetSummaryCharges($response->NetSummaryCharges); |
||
19 | 1 | } |
|
20 | } |
||
21 | 1 | } |
|
22 | } |
||
23 |