From 7e030720829036ab76eef4ab91f695710ce4bb11 Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 26 May 2023 07:17:09 +0000 Subject: [PATCH] "getStyledURL" is now public --- src/Content/Text/BBCode.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Content/Text/BBCode.php b/src/Content/Text/BBCode.php index 89bd80202..eae0bc432 100644 --- a/src/Content/Text/BBCode.php +++ b/src/Content/Text/BBCode.php @@ -517,7 +517,7 @@ class BBCode * @param string $url URL that is about to be reformatted * @return string reformatted link */ - private static function getStyledURL(string $url): string + public static function getStyledURL(string $url): string { $parts = parse_url($url); $scheme = $parts['scheme'] . '://';