Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 1 |
Lines | 0 |
Ratio | 0 % |
Tests | 2 |
CRAP Score | 1 |
Changes | 4 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | 4 | public function __construct( |
|
15 | string $name, |
||
16 | string $description, |
||
17 | Coin $sellValue, |
||
18 | Coin $buyValue, |
||
19 | protected WeaponType $type, |
||
20 | protected Damage $damage, |
||
21 | protected WeaponMastery $requiredWeaponMastery, |
||
22 | ) { |
||
23 | 4 | parent::__construct($name, $description, $sellValue, $buyValue); |
|
24 | 4 | } |
|
36 |