Add filter for 9900000000 number. #398
This commit is contained in:
parent
7faa6f3a1d
commit
258a379b68
1 changed files with 4 additions and 0 deletions
|
|
@ -69,6 +69,10 @@ class WarrantySMSCommand extends Command
|
||||||
if (!is_numeric($num))
|
if (!is_numeric($num))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
// should not be 9900000000
|
||||||
|
if ($num == '9900000000')
|
||||||
|
continue;
|
||||||
|
|
||||||
// add 63 prefix
|
// add 63 prefix
|
||||||
$num = '63' . $num;
|
$num = '63' . $num;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue