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