| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | public function __construct($currency, $params){ |
||
| 16 | if(is_null($params)) |
||
| 17 | return; |
||
| 18 | $this->currency = $currency; |
||
| 19 | $this->m15 = data_get($params,'15m'); |
||
| 20 | $this->last = data_get($params,'last'); |
||
| 21 | $this->buy = data_get($params,'buy'); |
||
| 22 | $this->sell = data_get($params,'sell'); |
||
| 23 | $this->symbol = data_get($params,'symbol'); |
||
|
|
|||
| 24 | } |
||
| 27 |