Files

14 lines
226 B
PHP

<?php
namespace App\Services\Notifications;
use App\Models\Notification;
class NotificationCleanupService
{
public function cleanupExpired(): int
{
return Notification::deleteExpiredNotifications();
}
}