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 |
||
57 | public function __construct( |
||
58 | $name, |
||
59 | $lfr, |
||
60 | $normal, |
||
61 | $heroic, |
||
62 | $mythic, |
||
63 | $id, |
||
64 | $bosses |
||
65 | ) { |
||
66 | $this->name = $name; |
||
67 | $this->lfr = $lfr; |
||
68 | $this->normal = $normal; |
||
69 | $this->heroic = $heroic; |
||
70 | $this->mythic = $mythic; |
||
71 | $this->id = $id; |
||
72 | $this->bosses = $bosses; |
||
73 | } |
||
74 | |||
131 |