| Total Complexity | 3 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class AuthenticationResponseUserField { |
||
| 9 | |||
| 10 | private $id; |
||
| 11 | |||
| 12 | private $rawProperties; |
||
| 13 | |||
| 14 | 2 | public function __construct(string $id, array $rawProperties) { |
|
| 15 | 2 | $this->id = $id; |
|
| 16 | 2 | $this->rawProperties = $rawProperties; |
|
| 17 | 2 | } |
|
| 18 | |||
| 19 | 2 | public function getId(): string { |
|
| 20 | 2 | return $this->id; |
|
| 21 | } |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @return \Ely\Mojang\Response\Properties\Property[] |
||
| 25 | */ |
||
| 26 | 2 | public function getProperties(): array { |
|
| 28 | } |
||
| 29 | |||
| 30 | } |
||
| 31 |