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 */ /* Don't fire emails if the company is disabled */
if ($this->company->is_disabled) { if ($this->company->is_disabled) {
return true; return;
} }
/* Set DB */ /* Set DB */