Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
24 | 16 | public function __construct( |
|
25 | int $side, |
||
26 | string $pair, |
||
27 | float $price, |
||
28 | float $amount, |
||
29 | int $timestamp, |
||
30 | int $id = 0 |
||
31 | ) { |
||
32 | 16 | $this->side = $side; |
|
33 | 16 | $this->pair = $pair; |
|
34 | 16 | $this->amount = $amount; |
|
35 | 16 | $this->price = $price; |
|
36 | 16 | $this->timestamp = $timestamp; |
|
37 | 16 | $this->id = $id; |
|
38 | 16 | } |
|
40 |