Jenkins file
Laverie/backend/pipeline/head There was a failure building this commit

This commit is contained in:
bastien
2026-07-04 22:42:58 +02:00
parent 10ee859602
commit d95bfa6c58
244 changed files with 16 additions and 15 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
namespace App\Jobs;
use App\Services\BookingService;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Queue\Queueable;
class CheckNoShowBookings implements ShouldQueue
{
use Queueable;
public function handle(BookingService $bookingService): void
{
$bookingService->checkNoShows();
}
}