n = $n; $this->e = $e; } /** * @return string */ public function asBCvalue() { return bcdiv($this->n, bcpow(10, $this->e)); } /** * @return int */ public function getE() { return $this->e; } /** * @return int */ public function getN() { return $this->n; } }