Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
51 | public function __construct( |
||
52 | $name, |
||
53 | $role, |
||
54 | $backgroundImage, |
||
55 | $icon, |
||
56 | $description, |
||
57 | $order |
||
58 | ) { |
||
59 | $this->name = $name; |
||
60 | $this->role = $role; |
||
61 | $this->backgroundImage = $backgroundImage; |
||
62 | $this->icon = $icon; |
||
63 | $this->description = $description; |
||
64 | $this->order = $order; |
||
65 | } |
||
66 | |||
115 |