Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
49 | 17 | public function __construct( |
|
50 | DateTime $maturity = null, |
||
51 | float $price = 0.00, |
||
52 | int $key = 0, |
||
53 | int $quantity = 1, |
||
54 | int $status = 0 |
||
55 | ) { |
||
56 | 17 | $this->maturity = $maturity ?? new DateTime(); |
|
57 | 17 | $this->price = $price; |
|
58 | 17 | $this->key = $key; |
|
59 | 17 | $this->quantity = $quantity; |
|
60 | 17 | $this->status = $status; |
|
61 | 17 | } |
|
62 | |||
143 |