We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 581f51a commit d665722Copy full SHA for d665722
tests/PHPStan/Analyser/data/json-decode/narrow_type.php
@@ -27,3 +27,8 @@ function ($mixed) {
27
$value = json_decode($mixed);
28
assertType('mixed', $value);
29
};
30
+
31
+function ($mixed) {
32
+ $value = json_decode($mixed, false);
33
+ assertType('mixed', $value);
34
+};
0 commit comments