Add support for numbers with data on scheduled + add support for sending sms to a csv file

This commit is contained in:
osaajani 2022-03-15 02:24:28 +01:00
parent 7fc7a8f245
commit 81fb987740
22 changed files with 635 additions and 114 deletions

View file

@ -48,8 +48,8 @@ use Symfony\Component\ExpressionLanguage\ExpressionLanguage;
return true;
}
catch (\Throwable $t) //Catch both, exceptions and php error
{
catch (\Throwable $t)
{ //Catch both, exceptions and php error
return false;
}
}
@ -71,8 +71,8 @@ use Symfony\Component\ExpressionLanguage\ExpressionLanguage;
return (bool) $result;
}
catch (\Throwable $t) //Catch both, exceptions and php error
{
catch (\Throwable $t)
{ //Catch both, exceptions and php error
return null;
}
}