From 634635f726aeda443b57de185641c69003d01e9c Mon Sep 17 00:00:00 2001 From: Keith Solomon Date: Sat, 4 Jul 2026 15:37:45 -0500 Subject: [PATCH] fix(contact): fix PHPCS OperatorSpacing warnings in contact-info block --- views/blocks/contact-info/contact-info.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/views/blocks/contact-info/contact-info.php b/views/blocks/contact-info/contact-info.php index 85737d9..1db62f9 100644 --- a/views/blocks/contact-info/contact-info.php +++ b/views/blocks/contact-info/contact-info.php @@ -13,8 +13,8 @@ namespace CWC; $info = get_field( 'contact_info', 'option' ); $address = $info['address'] ?? ''; -$email = $info['email'] ?? ''; -$phone = $info['phone'] ?? ''; +$email = $info['email'] ?? ''; +$phone = $info['phone'] ?? ''; $classes = 'contact-info'; $wrapper = blockWrapperAttributes( $classes, $is_preview );