Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
32 | 8 | public function __construct( |
|
33 | $title, |
||
34 | $price = 0, |
||
35 | $subtitle = null, |
||
36 | $quantity = null, |
||
37 | $currency = null, |
||
38 | $imageUrl = null |
||
39 | ) { |
||
40 | |||
41 | 8 | parent::__construct($title, $subtitle, $imageUrl); |
|
42 | 8 | $this->currency = $currency; |
|
43 | 8 | $this->price = $price; |
|
44 | 8 | $this->quantity = $quantity; |
|
45 | 8 | } |
|
46 | |||
86 |