Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
clxmstaab committed Feb 1, 2022
1 parent c911905 commit 34e9535
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/PHPStan/Analyser/LegacyNodeScopeResolverTest.php
Expand Up @@ -5302,27 +5302,27 @@ public function dataFunctions(): array
'$versionCompare8',
],
[
'int',
'int<0, max>',
'$mbStrlenWithoutEncoding',
],
[
'int',
'int<0, max>',
'$mbStrlenWithValidEncoding',
],
[
'int',
'int<0, max>',
'$mbStrlenWithValidEncodingAlias',
],
[
'false',
'$mbStrlenWithInvalidEncoding',
],
[
PHP_VERSION_ID < 80000 ? 'int|false' : 'int',
PHP_VERSION_ID < 80000 ? 'int<0, max>|false' : 'int<0, max>',
'$mbStrlenWithValidAndInvalidEncoding',
],
[
PHP_VERSION_ID < 80000 ? 'int|false' : 'int',
PHP_VERSION_ID < 80000 ? 'int<0, max>|false' : 'int<0, max>',
'$mbStrlenWithUnknownEncoding',
],
[
Expand Down

0 comments on commit 34e9535

Please sign in to comment.