mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 09:48:40 +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
|
||||
*
|
||||
* @var array
|
||||
* @var array<array{x:int|float, y:int|float}>
|
||||
* @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<array{x:int|float, y:int|float}> $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
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user