PMCORE-1402 Use Jobs in the email execution related to the 'Action by email'

This commit is contained in:
Roly Rudy Gutierrez Pinto
2020-05-25 15:15:31 -04:00
parent 292b5cf1f9
commit 97e9831e0d
16 changed files with 385 additions and 185 deletions

View File

@@ -18,4 +18,14 @@ abstract class QueuedClosure extends CallQueuedClosure
{
parent::__construct(new SerializableClosure($closure));
}
/**
* Get the display name for the queued job.
*
* @return string
*/
public function displayName(): string
{
return get_class($this) . ' ' . parent::displayName();
}
}