Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
55 | 1 | public function __construct( |
|
56 | ActionInterface $action, |
||
57 | TargetInterface $target, |
||
58 | TypeInterface $type, |
||
59 | QuantityInterface $usage, |
||
60 | Money $sum |
||
61 | ) { |
||
62 | 1 | $this->action = $action; |
|
63 | 1 | $this->target = $target; |
|
64 | 1 | $this->type = $type; |
|
65 | 1 | $this->usage = $usage; |
|
66 | 1 | $this->sum = $sum; |
|
67 | 1 | } |
|
68 | |||
94 |