From c9a0b5a1a0a7f0f1b0bb880cb80c2016121265be Mon Sep 17 00:00:00 2001 From: orklah Date: Sun, 21 May 2023 18:15:00 +0200 Subject: [PATCH] fix test --- tests/FileManipulation/ParamTypeManipulationTest.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/FileManipulation/ParamTypeManipulationTest.php b/tests/FileManipulation/ParamTypeManipulationTest.php index 7e5eba69364..bf182d5c482 100644 --- a/tests/FileManipulation/ParamTypeManipulationTest.php +++ b/tests/FileManipulation/ParamTypeManipulationTest.php @@ -390,6 +390,11 @@ function foo(){ class ConfigContainer { + /** + * @param int[] $value + * + * @psalm-param list{1, 2, 3, 4} $value + */ public function setValue(array $value): void { } @@ -397,11 +402,6 @@ public function setValue(array $value): void } - /** - * @param int[] $value - * - * @psalm-param list{1, 2, 3, 4} $value - */ function foo(){ $config = new ConfigContainer();