1
0
mirror of https://github.com/danog/phpseclib.git synced 2024-12-12 17:17:26 +01:00
phpseclib/tests/Unit/Math/BigInteger/DefaultTest.php
Jack Worman ea9f6540f3 PSR12 fixes
PSR12 fixes
2022-02-19 17:06:13 -06:00

23 lines
500 B
PHP

<?php
/**
* @author Andreas Fischer <bantu@phpbb.com>
* @copyright 2013 Andreas Fischer
* @license http://www.opensource.org/licenses/mit-license.html MIT License
*/
use phpseclib3\Math\BigInteger;
class Unit_Math_BigInteger_DefaultTest extends Unit_Math_BigInteger_TestCase
{
public function getInstance($x = 0, $base = 10)
{
return new BigInteger($x, $base);
}
public static function getStaticClass()
{
return 'phpseclib3\Math\BigInteger';
}
}