| 1 | <?php |
||
| 5 | abstract class AbstractChecker implements Checker, CheckerAllowsForRetries, CheckerIsScheduled, CheckerSendsNotifications |
||
| 6 | { |
||
| 7 | use AllowsForRetries, IsScheduled, SendsNotifications; |
||
| 8 | |||
| 9 | /** |
||
| 10 | * Returns a unique identifier to store the state with. |
||
| 11 | * |
||
| 12 | * @return string |
||
| 13 | */ |
||
| 14 | public function id(): string |
||
| 18 | } |
||
| 19 |