@@ -65,7 +65,7 @@ public static function getSniperLink(string $receiverEmail, ?string $fromEmail =
6565 */
6666 public static function googleSniperLink (string $ receiverEmail ): string
6767 {
68- $ detect = new MobileDetect () ;
68+ $ detect = new MobileDetect ;
6969
7070 if ($ detect ->isiPhone () || $ detect ->isiPad ()) {
7171 return 'googlegmail:// ' ;
@@ -76,7 +76,7 @@ public static function googleSniperLink(string $receiverEmail): string
7676
7777 public static function outlookSniperLink (string $ receiverEmail ): string
7878 {
79- $ detect = new MobileDetect () ;
79+ $ detect = new MobileDetect ;
8080
8181 if ($ detect ->isiPhone () || $ detect ->isiPad ()) {
8282 return 'ms-outlook:// ' ;
@@ -90,7 +90,7 @@ public static function outlookSniperLink(string $receiverEmail): string
9090 */
9191 public static function yahooMailSniperLink (?string $ fromEmail = null ): string
9292 {
93- $ detect = new MobileDetect () ;
93+ $ detect = new MobileDetect ;
9494
9595 if ($ detect ->isiPhone () || $ detect ->isiPad ()) {
9696 return 'ymail:// ' ;
@@ -104,7 +104,7 @@ public static function yahooMailSniperLink(?string $fromEmail = null): string
104104 */
105105 public static function iCloudMailSniperLink (): string
106106 {
107- $ detect = new MobileDetect () ;
107+ $ detect = new MobileDetect ;
108108
109109 if ($ detect ->isiPhone () || $ detect ->isiPad ()) {
110110 return 'message:// ' ;
@@ -249,7 +249,7 @@ public static function protonMailSniperLink(?string $fromEmail = null): string
249249 $ fromEmail = config ('mail.from.address ' );
250250 }
251251
252- $ detect = new MobileDetect () ;
252+ $ detect = new MobileDetect ;
253253
254254 if ($ detect ->isiPhone () || $ detect ->isiPad ()) {
255255 return 'protonmail:// ' ;
0 commit comments