From e0d4fa8cfb2411288295a67d6077d0f84f0f7fe7 Mon Sep 17 00:00:00 2001 From: ziming Date: Mon, 29 Jan 2024 17:49:47 +0800 Subject: [PATCH] fix helper function name --- src/helpers.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers.php b/src/helpers.php index 3b060fd..112c3f7 100644 --- a/src/helpers.php +++ b/src/helpers.php @@ -15,7 +15,7 @@ function sniper_link_quick(string $receiverEmail, ?string $fromEmail = null): ?s /** * @throws Detection\Exception\MobileDetectException */ - function sniper_link_quick(string $receiverEmail, ?string $fromEmail = null): ?string + function email_sniper_link(string $receiverEmail, ?string $fromEmail = null): ?string { return LaravelEmailSniperLink::getSniperLink($receiverEmail, $fromEmail); }