diff --git a/phpseclib/Math/BigInteger/Engines/PHP/Reductions/EvalBarrett.php b/phpseclib/Math/BigInteger/Engines/PHP/Reductions/EvalBarrett.php index 2f2c54b5..2f943317 100644 --- a/phpseclib/Math/BigInteger/Engines/PHP/Reductions/EvalBarrett.php +++ b/phpseclib/Math/BigInteger/Engines/PHP/Reductions/EvalBarrett.php @@ -105,7 +105,7 @@ abstract class EvalBarrett extends Base $rhs = new ' . $class . '(); $lhs->value = $n; $rhs->value = [' . - implode(',', array_map('self::float2string', $m)) . ']; + implode(',', array_map(self::class . '::float2string', $m)) . ']; list(, $temp) = $lhs->divide($rhs); return $temp->value; }