コード例 #1
0
 public function getChoiceBySerial($serial)
 {
     $returnValue = parent::getChoiceBySerial($serial);
     if (is_null($returnValue)) {
         $gaps = $this->getGaps();
         if (isset($gaps[$serial])) {
             $returnValue = $gaps[$serial];
         }
     }
     return $returnValue;
 }