diff --git a/Math/Numerics/Interpolation/CubicSplineInterpolation.php b/Math/Numerics/Interpolation/CubicSplineInterpolation.php index a419ae63e..a219b9c92 100644 --- a/Math/Numerics/Interpolation/CubicSplineInterpolation.php +++ b/Math/Numerics/Interpolation/CubicSplineInterpolation.php @@ -30,7 +30,7 @@ final class CubicSplineInterpolation implements InterpolationInterface /** * Points for spline interpolation * - * @var array + * @var array * @since 1.0.0 */ private array $points = []; @@ -62,11 +62,11 @@ final class CubicSplineInterpolation implements InterpolationInterface /** * Constructor. * - * @param array $points Points to create the interpolation with - * @param float $leftCurvature Left point curvature - * @param float $leftDerivativeType Derivative type for the left point - * @param float $rightCurvature Right point curvature - * @param float $rightDerivativeType Derivative type for the right point + * @param array $points Points to create the interpolation with + * @param float $leftCurvature Left point curvature + * @param float $leftDerivativeType Derivative type for the left point + * @param float $rightCurvature Right point curvature + * @param float $rightDerivativeType Derivative type for the right point * * @since 1.0.0 */