Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
59 | public function __construct( |
||
60 | $name, |
||
61 | $creature, |
||
62 | $slot, |
||
63 | $calcSpec, |
||
64 | $familyId, |
||
65 | $familyName, |
||
66 | SpecValueObject $hunterPetSpecValueObject = null |
||
67 | ) { |
||
68 | $this->name = $name; |
||
69 | $this->creature = $creature; |
||
70 | $this->slot = $slot; |
||
71 | $this->hunterPetSpecValueObject = $hunterPetSpecValueObject; |
||
72 | $this->calcSpec = $calcSpec; |
||
73 | $this->familyId = $familyId; |
||
74 | $this->familyName = $familyName; |
||
75 | } |
||
76 | |||
133 |