From 258a379b6882842ceb8a29c3b4a3fd5df45daadc Mon Sep 17 00:00:00 2001 From: Korina Cordero Date: Tue, 5 May 2020 03:07:08 +0000 Subject: [PATCH] Add filter for 9900000000 number. #398 --- src/Command/WarrantySMSCommand.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Command/WarrantySMSCommand.php b/src/Command/WarrantySMSCommand.php index e01bf732..14f4c531 100644 --- a/src/Command/WarrantySMSCommand.php +++ b/src/Command/WarrantySMSCommand.php @@ -69,6 +69,10 @@ class WarrantySMSCommand extends Command if (!is_numeric($num)) continue; + // should not be 9900000000 + if ($num == '9900000000') + continue; + // add 63 prefix $num = '63' . $num;