Overrides BigNumber::getSign
public function getSign() : int { return $this->value === '0' ? 0 : ($this->value[0] === '-' ? -1 : 1); }