From 9285883d0c950d25add07dd6a5aa7d0bed421ee2 Mon Sep 17 00:00:00 2001 From: Marcel Folaron Date: Mon, 18 Nov 2024 18:12:17 -0500 Subject: [PATCH] Update StringableMacros.php --- app/Core/Support/StringableMacros.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/Core/Support/StringableMacros.php b/app/Core/Support/StringableMacros.php index 8ef241b20..221b3b96a 100644 --- a/app/Core/Support/StringableMacros.php +++ b/app/Core/Support/StringableMacros.php @@ -2,7 +2,6 @@ namespace Leantime\Core\Support; -use Illuminate\Support\Str; /** * @mixin \Illuminate\Support\Stringable */ @@ -11,7 +10,7 @@ class StringableMacros /** * Cleans a string by removing special characters and optionally spaces. * - * @param bool $removeSpaces Whether to remove spaces from the string. + * @param bool $removeSpaces Whether to remove spaces from the string. * @return callable A function that cleans a string based on the given parameter. */ public function alphaNumeric($removeSpaces = false)