Merge pull request #7990 from turbo124/v5-develop

Don't return value from void function
This commit is contained in:
David Bomba 2022-11-27 15:40:29 +11:00 committed by GitHub
commit b34af08800
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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 */