1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-21 21:31:13 +01:00

Remove json_encode test that no longer works

This commit is contained in:
Brown 2020-04-04 18:02:28 -04:00
parent 690b29762e
commit 40345dd29c

View File

@ -1256,17 +1256,6 @@ class FunctionCallTest extends TestCase
'$a' => 'int',
]
],
'jsonEncodeString' => [
'<?php
$a = json_decode("hello");
$b = json_decode("hello", true);
$c = json_decode("hello", false);',
[
'$a' => 'array<int, array<int, array<array-key, mixed>|null|scalar|stdClass>|null|scalar|stdClass>|null|scalar|stdClass',
'$b' => 'array<array-key, array<array-key, array<array-key, mixed>|null|scalar>|null|scalar>|null|scalar',
'$c' => 'array<int, array<int, array<array-key, mixed>|null|scalar|stdClass>|null|scalar|stdClass>|null|scalar|stdClass',
]
],
];
}