| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | public function __construct( |
||
| 18 | int $id, |
||
| 19 | string $avatar, |
||
| 20 | string $name, |
||
| 21 | ?int $factionId, |
||
| 22 | string $css, |
||
| 23 | int $prestige, |
||
| 24 | bool $hasStationsNavigation, |
||
| 25 | ) { |
||
| 26 | $this->id = $id; |
||
| 27 | $this->avatar = $avatar; |
||
| 28 | $this->name = $name; |
||
| 29 | $this->factionId = $factionId; |
||
| 30 | $this->css = $css; |
||
| 31 | $this->prestige = $prestige; |
||
| 32 | $this->hasStationsNavigation = $hasStationsNavigation; |
||
| 33 | } |
||
| 70 |