From 5b27f8f26e488fcbc2e5369044af15c6d0d29d4d Mon Sep 17 00:00:00 2001 From: terrafrost Date: Wed, 1 Nov 2023 20:30:35 -0500 Subject: [PATCH] CS adjustments --- phpseclib/Math/BigInteger.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/phpseclib/Math/BigInteger.php b/phpseclib/Math/BigInteger.php index 3f4dc2ed..67d4788f 100644 --- a/phpseclib/Math/BigInteger.php +++ b/phpseclib/Math/BigInteger.php @@ -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'); } }