| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 49 | public function __construct($params){ |
||
| 50 | if(is_null($params)) |
||
| 51 | return; |
||
| 52 | $this->balance = data_get($params,'balance'); |
||
| 53 | $this->label = data_get($params,'label'); |
||
| 54 | $this->index = data_get($params,'index'); |
||
| 55 | $this->archived = data_get($params,'archived'); |
||
| 56 | $this->extendedPublicKey = data_get($params,'extendedPublicKey'); |
||
| 57 | $this->extendedPrivateKey = data_get($params,'extendedPrivateKey'); |
||
| 58 | $this->receiveIndex = data_get($params,'receiveIndex'); |
||
| 59 | $this->lastUsedReceiveIndex = data_get($params,'lastUsedReceiveIndex'); |
||
| 60 | $this->receiveAddress = data_get($params,'receiveAddress'); |
||
| 61 | } |
||
| 73 |