Merge branch 'develop' of https://bitbucket.org/colosa/processmaker into feature/PMCORE-1444
This commit is contained in:
14
app/Jobs/ActionByEmail.php
Normal file
14
app/Jobs/ActionByEmail.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
namespace App\Jobs;
|
||||
|
||||
class ActionByEmail extends QueuedClosure
|
||||
{
|
||||
/**
|
||||
* The number of times the job may be attempted.
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $tries = 1;
|
||||
|
||||
}
|
||||
14
app/Jobs/GenerateReportTable.php
Normal file
14
app/Jobs/GenerateReportTable.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
namespace App\Jobs;
|
||||
|
||||
class GenerateReportTable extends QueuedClosure
|
||||
{
|
||||
/**
|
||||
* The number of times the job may be attempted.
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $tries = 1;
|
||||
|
||||
}
|
||||
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
14
app/Jobs/RouteCase.php
Normal file
14
app/Jobs/RouteCase.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
namespace App\Jobs;
|
||||
|
||||
class RouteCase extends QueuedClosure
|
||||
{
|
||||
/**
|
||||
* The number of times the job may be attempted.
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $tries = 1;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user