Skip to content

Commit ac493d1

Browse files
committed
style: fix code style
1 parent bb068a7 commit ac493d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Illuminate/Support/Str.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1759,7 +1759,7 @@ public static function substrReplace($string, $replace, $offset = 0, $length = n
17591759
$start = mb_substr($string, 0, $offset, $encoding);
17601760
$end = mb_substr($string, $offset + $length, $strlen - ($offset + $length), $encoding);
17611761

1762-
return $start . $replace . $end;
1762+
return $start.$replace.$end;
17631763
}
17641764

17651765
/**

0 commit comments

Comments
 (0)