mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-12-26 03:27:31 +00:00
BigInteger: rm visibility modifiers from static variables
the non static variables don't have privacy modifiers so idk that the static ones ought to either. phpseclib 3.0 uses privacy modifiers but not the 2.0 branch
This commit is contained in:
parent
e46ef4cdf7
commit
2124f399b4
@ -163,23 +163,23 @@ class BigInteger
|
||||
*
|
||||
* @see __construct()
|
||||
*/
|
||||
protected static $base;
|
||||
protected static $baseFull;
|
||||
protected static $maxDigit;
|
||||
protected static $msb;
|
||||
static $base;
|
||||
static $baseFull;
|
||||
static $maxDigit;
|
||||
static $msb;
|
||||
|
||||
/**
|
||||
* $max10 in greatest $max10Len satisfying
|
||||
* $max10 = 10**$max10Len <= 2**$base.
|
||||
*/
|
||||
protected static $max10;
|
||||
static $max10;
|
||||
|
||||
/**
|
||||
* $max10Len in greatest $max10Len satisfying
|
||||
* $max10 = 10**$max10Len <= 2**$base.
|
||||
*/
|
||||
protected static $max10Len;
|
||||
protected static $maxDigit2;
|
||||
static $max10Len;
|
||||
static $maxDigit2;
|
||||
/**#@-*/
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user