Skip to content

Commit

Permalink
BigInteger: rm visibility modifiers from static variables
Browse files Browse the repository at this point in the history
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
  • Loading branch information
terrafrost committed Feb 24, 2024
1 parent e46ef4c commit 2124f39
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions phpseclib/Math/BigInteger.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
/**#@-*/

/**
Expand Down

0 comments on commit 2124f39

Please sign in to comment.