示例#1
0
 /**
  * Clear the users' score sheet
  * 
  * @param User $user
  * @return Game
  */
 protected function clearScore(User $user)
 {
     // Empty score sheet
     $this->scores[$user->getUserId()] = array('score' => 0, 'shots' => 0);
     return $this;
 }
示例#2
0
 public function clearScore(User $user)
 {
     // Empty score sheet
     $this->scores[$user->getUserId()] = array('seasonPoints' => 0, 'shots' => 0);
     return $this;
 }