From 949ba1f29866705113ff8d9e6e4a67d170053509 Mon Sep 17 00:00:00 2001 From: Francescu Garoby Date: Fri, 29 Apr 2022 23:06:29 +0200 Subject: [PATCH] fix PHPStan types --- src/Expectations/OppositeExpectation.php | 2 +- src/Mixins/Expectation.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Expectations/OppositeExpectation.php b/src/Expectations/OppositeExpectation.php index 636405ac..55893bf4 100644 --- a/src/Expectations/OppositeExpectation.php +++ b/src/Expectations/OppositeExpectation.php @@ -30,7 +30,7 @@ final class OppositeExpectation /** * Asserts that the value array not has the provided $keys. * - * @param array $keys + * @param array> $keys * * @return Expectation */ diff --git a/src/Mixins/Expectation.php b/src/Mixins/Expectation.php index 72978ce6..d6f4eb35 100644 --- a/src/Mixins/Expectation.php +++ b/src/Mixins/Expectation.php @@ -595,7 +595,7 @@ final class Expectation /** * Asserts that the value array has the provided $keys. * - * @param array $keys + * @param array> $keys * * @return Expectation */