-
-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #108 from ricventu/retry-until-job-method
Support for retryUntil method
- Loading branch information
Showing
3 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?php | ||
|
||
namespace Spatie\QueueableAction\Tests\TestClasses; | ||
|
||
use DateTime; | ||
use Exception; | ||
use Spatie\QueueableAction\QueueableAction; | ||
|
||
class RetryUntilAction | ||
{ | ||
use QueueableAction; | ||
|
||
public function retryUntil() | ||
{ | ||
return DateTime::createFromFormat("Y-m-d H:m:s", "2000-01-01 00:00:00"); | ||
} | ||
|
||
public function execute() | ||
{ | ||
} | ||
} |