We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44a4a94 commit fd70215Copy full SHA for fd70215
1 file changed
tests/PHPStan/Analyser/nsrt/pr-4390.php
@@ -13,6 +13,6 @@ function (string $s): void {
13
}
14
15
16
- assertType('non-empty-array<int<0, 9>, array<int<0, 9>, string>>', $locations); // could be 'non-empty-array<int<0, 9>, non-empty-array<int<0, 9>, string>>'
17
- assertType('array<int<0, 9>, string>', $locations[0]); // could be 'non-empty-array<int<0, 9>, string>'
+ assertType('non-empty-array<int<0, 9>, non-empty-array<int<0, 9>, string>>', $locations);
+ assertType('non-empty-array<int<0, 9>, string>', $locations[0]);
18
};
0 commit comments