Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
46 | public function __construct( |
||
47 | $id, |
||
48 | $name, |
||
49 | $quantity, |
||
50 | $lastUpdated, |
||
51 | $money, |
||
52 | $highest |
||
53 | ) { |
||
54 | $this->id = $id; |
||
55 | $this->name = $name; |
||
56 | $this->quantity = $quantity; |
||
57 | $this->lastUpdated = $lastUpdated; |
||
58 | $this->money = $money; |
||
59 | $this->highest = $highest; |
||
60 | } |
||
61 | |||
110 |