From 8740f77a4ab6ce2b65ff954c984d16ab8a234e44 Mon Sep 17 00:00:00 2001 From: Yohta Kimura Date: Sat, 14 May 2022 10:16:01 +0900 Subject: [PATCH] fix test without breaking the intention --- tests/PHPStan/Levels/data/arrayDimFetches.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/PHPStan/Levels/data/arrayDimFetches.php b/tests/PHPStan/Levels/data/arrayDimFetches.php index effe56842cc..13fe22ded0f 100644 --- a/tests/PHPStan/Levels/data/arrayDimFetches.php +++ b/tests/PHPStan/Levels/data/arrayDimFetches.php @@ -55,7 +55,7 @@ public function doBaz($a, $b): void */ public function iterableOffset($iterable): void { - unset($iterable['foo']); + var_dump($iterable['foo']); } }