Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
38 | public function __construct($json){ |
||
39 | $this->to = data_get($json,'to'); |
||
40 | $this->from = data_get($json,'from'); |
||
41 | $this->amount = data_get($json,'amount'); |
||
42 | $this->fee = data_get($json,'fee'); |
||
43 | $this->txid = data_get($json,'txid'); |
||
44 | $this->success = data_get($json,'success'); |
||
45 | } |
||
48 |