コード例 #1
0
ファイル: PointLog.php プロジェクト: 0ida/fussi
 /**
  * @param Team $team
  *
  * @return float
  */
 protected function getPointsForTeam($team)
 {
     $sum = $team->getAttackingPlayer()->getPoints() + $team->getDefendingPlayer()->getPoints();
     return round($sum / 2);
 }