Improve array docblock NO_CI

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

View File

@ -27,7 +27,7 @@ final class LagrangeInterpolation 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 = [];
@ -35,7 +35,7 @@ final class LagrangeInterpolation implements InterpolationInterface
/** /**
* Constructor. * Constructor.
* *
* @param array<int, array<string, int|float>> $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
*/ */