Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
58 | public function __construct($json){ |
||
59 | $this->balance = data_get($json,'balance'); |
||
60 | $this->label = data_get($json,'address'); |
||
61 | $this->index = data_get($json,'label'); |
||
62 | $this->archived = data_get($json,'archived'); |
||
63 | $this->extendedPublicKey = data_get($json,'extendedPublicKey'); |
||
64 | $this->extendedPrivateKey = data_get($json,'extendedPrivateKey'); |
||
65 | $this->receiveIndex = data_get($json,'receiveIndex'); |
||
66 | $this->lastUsedReceiveIndex = data_get($json,'lastUsedReceiveIndex'); |
||
67 | $this->receiveAddress = data_get($json,'receiveAddress'); |
||
68 | $this->cahce = new Cache(data_get($json,'cache')); |
||
69 | } |
||
72 |