Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
49 | 2 | public function __construct( |
|
50 | $aclass = 'currency', |
||
51 | $asset = 'all', |
||
52 | $type = 'all', |
||
53 | $start = null, |
||
54 | $end = null, |
||
55 | $ofs = null |
||
56 | ) { |
||
57 | 2 | $this->aclass = $aclass; |
|
58 | 2 | $this->asset = $asset; |
|
59 | 2 | $this->type = $type; |
|
60 | 2 | $this->start = $start; |
|
61 | 2 | $this->end = $end; |
|
62 | 2 | $this->ofs = $ofs; |
|
63 | 2 | } |
|
107 |