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