From 6999b1ed7613c472a696fbc97ecd77fbfa805fba Mon Sep 17 00:00:00 2001 From: Vincent Klaiber Date: Wed, 3 Apr 2024 08:10:11 +0200 Subject: [PATCH] Fix syntax issues --- public/themes/wordplate/functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/themes/wordplate/functions.php b/public/themes/wordplate/functions.php index f491c8a6..2fe3a5ee 100644 --- a/public/themes/wordplate/functions.php +++ b/public/themes/wordplate/functions.php @@ -101,5 +101,5 @@ return $mailer; }); -add_filter('wp_mail_from', fn () => env('MAIL_FROM_ADDRESS', 'hello@example.com')); -add_filter('wp_mail_from_name', fn () => env('MAIL_FROM_NAME', 'Example')); +add_filter('wp_mail_from', fn() => env('MAIL_FROM_ADDRESS', 'hello@example.com')); +add_filter('wp_mail_from_name', fn() => env('MAIL_FROM_NAME', 'Example'));