Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
clxmstaab committed Oct 15, 2021
1 parent cb769c9 commit cb7d00b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/PHPStan/Analyser/LegacyNodeScopeResolverTest.php
Expand Up @@ -5390,27 +5390,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 cb7d00b

Please sign in to comment.