class GameHighScore

This object represents one row of the high scores table for a game.

Methods

__construct(int $position, User $user, int $score)

No description

int
getPosition()

Position in high score table for the game.

getUser()

User.

int
getScore()

Score.

Details

at line 15
__construct(int $position, User $user, int $score)

No description

Parameters

int $position
User $user
int $score

at line 25
int getPosition()

Position in high score table for the game.

Return Value

int

at line 33
User getUser()

User.

Return Value

User

at line 41
int getScore()

Score.

Return Value

int