Merge branch '398-filter-numbers-for-sms-warranty-sending' into 'master'
Resolve "Filter numbers for sms warranty sending" Closes #398 See merge request jankstudio/resq!449
This commit is contained in:
commit
906fc76ff3
1 changed files with 4 additions and 0 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue