Resolve "Filter numbers for sms warranty sending" #1260

Merged
korina.cordero merged 1 commit from 398-filter-numbers-for-sms-warranty-sending into master 2020-05-05 03:09:12 +00:00

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;