From bdb6c08c3507c3aeb47a1bc5a198ee9bdb3618f7 Mon Sep 17 00:00:00 2001 From: terrafrost Date: Mon, 25 Jan 2021 12:36:02 -0600 Subject: [PATCH] misc docblock adjustments --- phpseclib/Crypt/EC/BaseCurves/Binary.php | 2 +- phpseclib/Crypt/EC/BaseCurves/Montgomery.php | 2 +- phpseclib/Math/BigInteger/Engines/Engine.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/phpseclib/Crypt/EC/BaseCurves/Binary.php b/phpseclib/Crypt/EC/BaseCurves/Binary.php index f35c01d2..d984ba4b 100644 --- a/phpseclib/Crypt/EC/BaseCurves/Binary.php +++ b/phpseclib/Crypt/EC/BaseCurves/Binary.php @@ -40,7 +40,7 @@ class Binary extends Base /** * Binary Field Integer factory * - * @var \phpseclib3\Math\BinaryFields + * @var \phpseclib3\Math\BinaryField */ protected $factory; diff --git a/phpseclib/Crypt/EC/BaseCurves/Montgomery.php b/phpseclib/Crypt/EC/BaseCurves/Montgomery.php index 5f5fdf0e..b4bba650 100644 --- a/phpseclib/Crypt/EC/BaseCurves/Montgomery.php +++ b/phpseclib/Crypt/EC/BaseCurves/Montgomery.php @@ -45,7 +45,7 @@ class Montgomery extends Base /** * Prime Field Integer factory * - * @var \phpseclib3\Math\PrimeFields + * @var \phpseclib3\Math\PrimeField */ protected $factory; diff --git a/phpseclib/Math/BigInteger/Engines/Engine.php b/phpseclib/Math/BigInteger/Engines/Engine.php index 05d97431..10dd994b 100644 --- a/phpseclib/Math/BigInteger/Engines/Engine.php +++ b/phpseclib/Math/BigInteger/Engines/Engine.php @@ -1139,7 +1139,7 @@ abstract class Engine implements \Serializable * Splits BigInteger's into chunks of $split bits * * @param int $split - * @return \phpseclib3\Math\BigInteger\Engine[] + * @return \phpseclib3\Math\BigInteger\Engines\Engine[] */ public function bitwise_split($split) {