| Total Complexity | 1 |
| Total Lines | 12 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 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 |
||
| 19 |