Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
57 | public function __construct( |
||
58 | $speciesId, |
||
59 | $breedId, |
||
60 | $petQualityId, |
||
61 | $level, |
||
62 | $health, |
||
63 | $power, |
||
64 | $speed |
||
65 | ) { |
||
66 | $this->speciesId = $speciesId; |
||
67 | $this->breedId = $breedId; |
||
68 | $this->petQualityId = $petQualityId; |
||
69 | $this->level = $level; |
||
70 | $this->health = $health; |
||
71 | $this->power = $power; |
||
72 | $this->speed = $speed; |
||
73 | } |
||
74 | |||
131 |