mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-07 02:08:21 +00:00
Modernize private property declarations in src/player
This commit is contained in:
@ -30,9 +30,7 @@ use Ramsey\Uuid\UuidInterface;
|
||||
* Encapsulates player info specific to players who are authenticated with XBOX Live.
|
||||
*/
|
||||
final class XboxLivePlayerInfo extends PlayerInfo{
|
||||
|
||||
/** @var string */
|
||||
private $xuid;
|
||||
private string $xuid;
|
||||
|
||||
public function __construct(string $xuid, string $username, UuidInterface $uuid, Skin $skin, string $locale, array $extraData = []){
|
||||
parent::__construct($username, $uuid, $skin, $locale, $extraData);
|
||||
|
Reference in New Issue
Block a user