From ac89a7237c5a46d2aa803f6e307da4ef85c10594 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 5 Feb 2020 16:40:58 +0100 Subject: [PATCH] Improve array docblock NO_CI --- Math/Numerics/Interpolation/LagrangeInterpolation.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Math/Numerics/Interpolation/LagrangeInterpolation.php b/Math/Numerics/Interpolation/LagrangeInterpolation.php index 69fff9d5c..d85a2b128 100644 --- a/Math/Numerics/Interpolation/LagrangeInterpolation.php +++ b/Math/Numerics/Interpolation/LagrangeInterpolation.php @@ -27,7 +27,7 @@ final class LagrangeInterpolation implements InterpolationInterface /** * Points for spline interpolation * - * @var array + * @var array * @since 1.0.0 */ private array $points = []; @@ -35,7 +35,7 @@ final class LagrangeInterpolation implements InterpolationInterface /** * Constructor. * - * @param array> $points Points to create the interpolation with + * @param array $points Points to create the interpolation with * * @since 1.0.0 */