File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -22,25 +22,25 @@ public function doFoo(
22
22
$ intOrLiteralNumericString = '123 ' ;
23
23
}
24
24
25
- $ int + $ int ;
26
- $ string + $ int ;
27
- $ literalNumericString + $ int ;
28
- $ intOrString + $ int ;
29
- $ intOrLiteralNumericString + $ int ;
25
+ $ r = $ int + $ int ;
26
+ $ r = $ string + $ int ;
27
+ $ r = $ literalNumericString + $ int ;
28
+ $ r = $ intOrString + $ int ;
29
+ $ r = $ intOrLiteralNumericString + $ int ;
30
30
31
31
$ stringOrObject = $ string ;
32
32
if (rand (0 , 1 ) === 0 ) {
33
33
$ stringOrObject = new \stdClass ();
34
34
}
35
35
36
- $ stringOrObject + $ int ;
36
+ $ r = $ stringOrObject + $ int ;
37
37
38
38
$ unionOfLiterals = '123 ' ;
39
39
if (rand (0 , 1 ) === 0 ) {
40
40
$ unionOfLiterals = '456 ' ;
41
41
}
42
42
43
- $ unionOfLiterals + $ int ;
43
+ $ r = $ unionOfLiterals + $ int ;
44
44
}
45
45
46
46
}
You can’t perform that action at this time.
0 commit comments