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