CS adjustments

This commit is contained in:
terrafrost 2023-11-01 20:30:35 -05:00
parent ecd2512a32
commit 5b27f8f26e
1 changed files with 1 additions and 2 deletions

View File

@ -29,7 +29,6 @@ namespace phpseclib3\Math;
use phpseclib3\Exception\BadConfigurationException;
use phpseclib3\Math\BigInteger\Engines\Engine;
use UnexpectedValueException;
/**
* Pure-PHP arbitrary precision integer arithmetic library. Supports base-2, base-10, base-16, and base-256
@ -153,7 +152,7 @@ class BigInteger implements \JsonSerializable
}
}
throw new UnexpectedValueException('No valid BigInteger found. This is only possible when JIT is enabled on Windows and neither the GMP or BCMath extensions are available so either disable JIT or install GMP / BCMath');
throw new \UnexpectedValueException('No valid BigInteger found. This is only possible when JIT is enabled on Windows and neither the GMP or BCMath extensions are available so either disable JIT or install GMP / BCMath');
}
}