18 خطوط
342 B
PHP
18 خطوط
342 B
PHP
<?php
|
|
|
|
namespace App\Jobs;
|
|
|
|
use App\Services\TaskReminderService;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Queue\Queueable;
|
|
|
|
class SendTaskReminders implements ShouldQueue
|
|
{
|
|
use Queueable;
|
|
|
|
public function handle(TaskReminderService $service): void
|
|
{
|
|
$service->sendDueNotifications();
|
|
}
|
|
}
|