1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 21:22:58 +01:00

Don't return value from void function

This commit is contained in:
David Bomba 2022-11-27 15:38:25 +11:00
parent 5544207687
commit 3cad564fd5

View File

@ -103,7 +103,7 @@ class EmailEntity implements ShouldQueue
{
/* Don't fire emails if the company is disabled */
if ($this->company->is_disabled) {
return true;
return;
}
/* Set DB */