From 5a02ce27ac9af495d47a5e56e50a49e56367ae02 Mon Sep 17 00:00:00 2001 From: terrafrost Date: Sun, 2 Jul 2023 12:45:16 -0500 Subject: [PATCH] CS adjustment --- phpseclib/Math/BigInteger/Engines/Engine.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpseclib/Math/BigInteger/Engines/Engine.php b/phpseclib/Math/BigInteger/Engines/Engine.php index 751e5c34..ff58e08d 100644 --- a/phpseclib/Math/BigInteger/Engines/Engine.php +++ b/phpseclib/Math/BigInteger/Engines/Engine.php @@ -617,7 +617,7 @@ abstract class Engine implements \JsonSerializable } if ($this->compare($n) > 0) { - list(, $temp) = $this->divide($n); + [, $temp] = $this->divide($n); return $temp->powModInner($e, $n); }