Jose\Util\BigInteger::__construct PHP Method

__construct() private method

Converts base-10 and binary strings (base-256) to BigIntegers.
private __construct ( GMP | string $value, integer $base )
$value GMP | string
$base integer
    private function __construct($value, $base)
    {
        if ($value instanceof \GMP) {
            $this->value = $value;
            return;
        }
        $this->value = gmp_init($value, $base);
    }