Example #1
0
 /**
  * {@inheritdoc}
  */
 public function getLeadingParticipant($lap_number)
 {
     // There is cache
     if (array_key_exists($lap_number, $this->cache_leading_participant)) {
         return $this->cache_leading_participant[$lap_number];
     }
     return parent::getLeadingParticipant($lap_number);
 }