示例#1
0
 /**
  * @param $unit
  * @throws ConversionException
  */
 protected function setBase($unit)
 {
     if ($this->shouldSetBaseTen($unit)) {
         $this->base = 10;
     }
     if (UnitResolver::unitsAreDifferent($this->from, $unit)) {
         throw new ConversionException("Cannot convert between metric and binary formats");
     }
 }