mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-27 08:38:46 +00:00
16 lines
395 B
PHP
16 lines
395 B
PHP
<?php
|
|
// phpcs:ignoreFile
|
|
namespace PhpAmqpLib\Helper;
|
|
|
|
if (class_exists('phpseclib\Math\BigInteger')) {
|
|
class BigInteger extends \phpseclib\Math\BigInteger
|
|
{
|
|
}
|
|
} elseif (class_exists('phpseclib3\Math\BigInteger')) {
|
|
class BigInteger extends \phpseclib3\Math\BigInteger
|
|
{
|
|
}
|
|
} else {
|
|
throw new \RuntimeException('Cannot find supported phpseclib/phpseclib library');
|
|
}
|