Fixes for testS

This commit is contained in:
David Bomba 2020-07-06 14:12:04 +10:00
parent f4a66dd75b
commit d6b58fe5b8

View File

@ -44,17 +44,19 @@ class TriggeredActions extends AbstractService
{ {
//the request may have buried in it additional actions we should automatically perform on the invoice //the request may have buried in it additional actions we should automatically perform on the invoice
if($request->has('send_email')) { if($this->request->has('send_email')) {
} }
if($request->has('auto_bill')) { if($this->request->has('auto_bill')) {
} }
if($request->has('paid')) { if($this->request->has('paid')) {
} }
return $this->invoice;
} }
private function sendEmail() private function sendEmail()