Skip to content

Commit 456008c

Browse files
committed
CS fix
1 parent 86a0e48 commit 456008c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

program/lib/Roundcube/bootstrap.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,8 @@ function rcube_autoload(string $classname): bool
438438
}
439439

440440
if (!function_exists('str_starts_with')) {
441-
function str_starts_with(string $haystack, string $needle) {
441+
function str_starts_with(string $haystack, string $needle)
442+
{
442443
return strlen($needle) === 0 || strpos($haystack, $needle) === 0;
443444
}
444445
}

0 commit comments

Comments
 (0)