From b712b35a971639f86c339d1cc433e5357c89289e Mon Sep 17 00:00:00 2001 From: Korina Cordero Date: Tue, 12 Apr 2022 10:01:14 +0000 Subject: [PATCH] Fix checking for return. #658 --- src/Service/RisingTideGateway.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Service/RisingTideGateway.php b/src/Service/RisingTideGateway.php index 0a4ba1aa..5928e72e 100644 --- a/src/Service/RisingTideGateway.php +++ b/src/Service/RisingTideGateway.php @@ -36,7 +36,7 @@ class RisingTideGateway // at this point, assume that mobile is numeric and valid mobile number $clean_num = $this->cleanPhoneNumber($mobile_num); - if ($clean_num == false) + if ($clean_num === false) error_log('Invalid mobile number provided. Cannot send SMS message to ' . $mobile_num); else {