Improve array docblock NO_CI

This commit is contained in:
Dennis Eichhorn 2020-02-05 16:42:25 +01:00 committed by GitHub
parent ac89a7237c
commit f973d59d58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,7 +29,7 @@ final class LinearInterpolation implements InterpolationInterface
/** /**
* Points for spline interpolation * Points for spline interpolation
* *
* @var array * @var array<int, array{x:int|float, y:int|float}>
* @since 1.0.0 * @since 1.0.0
*/ */
private array $points = []; private array $points = [];
@ -61,7 +61,7 @@ final class LinearInterpolation implements InterpolationInterface
/** /**
* Constructor. * Constructor.
* *
* @param array $points Points to create the interpolation with * @param array<int, array{x:int|float, y:int|float}> $points Points to create the interpolation with
* *
* @since 1.0.0 * @since 1.0.0
*/ */