Add filter for 9900000000 number. #398

This commit is contained in:
Korina Cordero 2020-05-05 03:07:08 +00:00
parent 7faa6f3a1d
commit 258a379b68

View file

@ -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;