Files
DatBrowser/app/Notification/NotificationProvider.php
Matthias Guillitte c26a09701a
All checks were successful
Push image to registry / build-image (push) Successful in 4m24s
Allow sending helcase battle to custom discord webhook
2025-03-20 19:28:40 +01:00

8 lines
168 B
PHP

<?php
namespace App\Notification;
abstract class NotificationProvider {
abstract public static function send(Notification $notification, array $options): void;
}