| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 47 | public function __construct(string $name, int $rank, string $vocation, ?float $points, ?int $level) |
||
| 48 | { |
||
| 49 | $this->handleImmutableConstructor(); |
||
| 50 | |||
| 51 | $this->name = $name; |
||
| 52 | $this->rank = $rank; |
||
| 53 | $this->vocation = $vocation; |
||
| 54 | $this->points = $points; |
||
| 55 | $this->level = $level; |
||
| 56 | } |
||
| 57 | |||
| 98 |