Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 1 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
35 | public function __construct( |
||
36 | $id, |
||
37 | TypeInterface $type, |
||
38 | TargetInterface $target, |
||
39 | PlanInterface $plan = null, |
||
40 | QuantityInterface $prepaid, |
||
41 | Money $price |
||
42 | 39 | ) { |
|
43 | parent::__construct($id, $type, $target, $plan); |
||
44 | $this->prepaid = $prepaid; |
||
45 | $this->price = $price; |
||
46 | } |
||
71 |