We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ext-bcmath
ext-gmp
BigIntegerValueTest
1 parent 43a85d4 commit 327f2aeCopy full SHA for 327f2ae
test/BigIntegerValueTest.php
@@ -4,6 +4,7 @@
4
5
namespace LaminasTest\XmlRpc;
6
7
+use Laminas\Math\BigInteger\Exception\RuntimeException;
8
use Laminas\XmlRpc\AbstractValue;
9
use Laminas\XmlRpc\Generator\GeneratorInterface as Generator;
10
use Laminas\XmlRpc\Value\BigInteger;
@@ -31,7 +32,7 @@ protected function setUp(): void
31
32
}
33
try {
34
new BigInteger(0);
- } catch (Exception $e) {
35
+ } catch (RuntimeException $e) {
36
$this->markTestSkipped($e->getMessage());
37
38
0 commit comments