mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-02-09 13:38:41 +00:00
Improve array docblock NO_CI
This commit is contained in:
parent
2b3de00f4c
commit
e0638cb60c
|
|
@ -30,7 +30,7 @@ final class CubicSplineInterpolation implements InterpolationInterface
|
||||||
/**
|
/**
|
||||||
* Points for spline interpolation
|
* Points for spline interpolation
|
||||||
*
|
*
|
||||||
* @var array
|
* @var array<array{x:int|float, y:int|float}>
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
private array $points = [];
|
private array $points = [];
|
||||||
|
|
@ -62,11 +62,11 @@ final class CubicSplineInterpolation implements InterpolationInterface
|
||||||
/**
|
/**
|
||||||
* Constructor.
|
* Constructor.
|
||||||
*
|
*
|
||||||
* @param array $points Points to create the interpolation with
|
* @param array<array{x:int|float, y:int|float}> $points Points to create the interpolation with
|
||||||
* @param float $leftCurvature Left point curvature
|
* @param float $leftCurvature Left point curvature
|
||||||
* @param float $leftDerivativeType Derivative type for the left point
|
* @param float $leftDerivativeType Derivative type for the left point
|
||||||
* @param float $rightCurvature Right point curvature
|
* @param float $rightCurvature Right point curvature
|
||||||
* @param float $rightDerivativeType Derivative type for the right point
|
* @param float $rightDerivativeType Derivative type for the right point
|
||||||
*
|
*
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user