Skip to content

Commit 5d8d0ec

Browse files
committed
[CS] Use combined assignment operators when possible
1 parent 9fcce5f commit 5d8d0ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Request.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ public static function create($uri, $method = 'GET', $parameters = array(), $coo
351351

352352
if (isset($components['port'])) {
353353
$server['SERVER_PORT'] = $components['port'];
354-
$server['HTTP_HOST'] = $server['HTTP_HOST'].':'.$components['port'];
354+
$server['HTTP_HOST'] .= ':'.$components['port'];
355355
}
356356

357357
if (isset($components['user'])) {

0 commit comments

Comments
 (0)