Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Code Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
51 | public function __construct( |
||
52 | $health, |
||
53 | $powerType, |
||
54 | $power, |
||
55 | $str, |
||
56 | $agi, |
||
57 | $int, |
||
58 | $sta |
||
59 | ) { |
||
60 | $this->health = $health; |
||
61 | $this->powerType = $powerType; |
||
62 | $this->power = $power; |
||
63 | $this->str = $str; |
||
64 | $this->agi = $agi; |
||
65 | $this->int = $int; |
||
66 | $this->sta = $sta; |
||
67 | } |
||
68 | |||
125 |