Skip to content

Commit 09a2449

Browse files
committed
[CS] Use combined assignment operators when possible
1 parent 984cda4 commit 09a2449

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/Util/StringUtilTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function testTrimUtf8Separators($hex)
3535

3636
// Convert UCS-2BE to UTF-8
3737
$symbol = mb_convert_encoding($binary, 'UTF-8', 'UCS-2BE');
38-
$symbol = $symbol."ab\ncd".$symbol;
38+
$symbol .= "ab\ncd".$symbol;
3939

4040
$this->assertSame("ab\ncd", StringUtil::trim($symbol));
4141
}

0 commit comments

Comments
 (0)