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.
1 parent c9d1038 commit 64fa6e4Copy full SHA for 64fa6e4
PhpAmqpLib/Helper/BigInteger.php
@@ -1,11 +1,15 @@
1
<?php
2
-
+// phpcs:ignoreFile
3
namespace PhpAmqpLib\Helper;
4
5
if (class_exists('phpseclib\Math\BigInteger')) {
6
- class_alias('phpseclib\Math\BigInteger', 'PhpAmqpLib\Helper\BigInteger');
+ class BigInteger extends \phpseclib\Math\BigInteger
7
+ {
8
+ }
9
} elseif (class_exists('phpseclib3\Math\BigInteger')) {
- class_alias('phpseclib3\Math\BigInteger', 'PhpAmqpLib\Helper\BigInteger');
10
+ class BigInteger extends \phpseclib3\Math\BigInteger
11
12
13
} else {
14
throw new \RuntimeException('Cannot find supported phpseclib/phpseclib library');
15
}
0 commit comments