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