backupscript/src/Notification/NotificationInterface.php

9 lines
136 B
PHP
Raw Normal View History

2023-06-12 09:30:10 +00:00
<?php
namespace App\Notification;
interface NotificationInterface
{
public function send(string $title, string $message): void;
}