fixed errror

This commit is contained in:
kremsy 2017-03-30 16:10:29 +02:00
parent 6a703f7311
commit 769ee7262a

View File

@ -5,7 +5,7 @@ namespace ManiaControl\Callbacks\Structures\TrackMania\Models;
use ManiaControl\General\UsageInformationAble;
use ManiaControl\General\UsageInformationTrait;
use ManiaControl\Players\Player;
//TODO proper return descriptions on getter methods
/**
* PlayerScore Model
*
@ -103,14 +103,15 @@ class PlayerScore implements UsageInformationAble {
public function getbestraceTime(){
return $this->bestraceTime;
}
/**
* Gets the bestRaceTime
*
* @param int $bestraceTime
*/
public function getbestraceTime(){
return $this->bestraceTime;
* Gets the MapPoints
*
* @return int
*/
public function getMatchPoints(){
return $this->matchPoints;
}
/**