Skip to content

Commit a04cdc6

Browse files
committed
fix for get_object_vars() test
1 parent 767a07e commit a04cdc6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/PHPStan/Analyser/nsrt/get-object-vars.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
*/
1010
function getObjectVarsWithIntKeyTest(object $object): void
1111
{
12-
assertType('array<array-key, mixed>', get_object_vars($object));
13-
assertType('array<array-key, mixed>', get_object_vars(json_decode('{"1": "test"}')));
12+
assertType('array<mixed>', get_object_vars($object));
13+
assertType('array<mixed>', get_object_vars(json_decode('{"1": "test"}')));
1414
}

0 commit comments

Comments
 (0)