| Total Complexity | 6 |
| Total Lines | 44 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class WatchAttendance implements ShouldQueue |
||
| 15 | { |
||
| 16 | use Dispatchable; |
||
| 17 | use InteractsWithQueue; |
||
| 18 | use Queueable; |
||
| 19 | use SerializesModels; |
||
|
|
|||
| 20 | |||
| 21 | public int $tries = 5; |
||
| 22 | |||
| 23 | public function __construct(protected Attendance $attendance) |
||
| 24 | { |
||
| 25 | } |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Execute the job. |
||
| 29 | * |
||
| 30 | * @return void |
||
| 31 | */ |
||
| 32 | public function handle() |
||
| 58 | } |
||
| 59 | } |
||
| 61 |