in app/classes/ReleaseInsights/Utils.php [227:236]
public static function startsWith(string $haystack, string|array $needles): bool
{
foreach ((array) $needles as $needle) {
if (str_starts_with($haystack, $needle)) {
return true;
}
}
return false;
}