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