Exemple #1
0
 /**
  * Resolves the current buzzer competition and returns the resolution.
  * As a side-effect, this will also disable the buzzer.
  *
  * @return \Depotwarehouse\Jeopardy\Buzzer\BuzzerResolution
  */
 public function resolveBuzzes()
 {
     $resolution = $this->resolver->resolve();
     $this->buzzerStatus->disable();
     return $resolution;
 }