Skip to content

Commit e68e1e4

Browse files
committed
Update bug-13481-before-php83.php
1 parent 466bed0 commit e68e1e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/PHPStan/Analyser/nsrt/bug-13481-before-php83.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66

77
function bug13481() {
88
$s = 'ab c1';
9-
assertType("'ab c2'", str_increment($s));
9+
assertType("*ERROR*", str_increment($s));
1010

1111
++$s;
1212
assertType("'ab c2'", $s);
1313
}
1414

1515
function bug13481b() {
1616
$s = '%';
17-
assertType("'%'", str_increment($s));
17+
assertType("*ERROR*", str_increment($s));
1818

1919
++$s;
2020
assertType("'%'", $s);

0 commit comments

Comments
 (0)