Files
DatBrowser/app/Notification/Notifications/NotificationLogin.php
T
2025-02-06 17:30:45 +01:00

12 lines
288 B
PHP

<?php
namespace App\Notification\Notifications;
use App\Notification\Notification;
abstract class NotificationLogin extends Notification {
public function __construct(int $jobId, \App\Notification\NotificationBody $body) {
parent::__construct($jobId, $body, true);
}
}