Files
backupscript/src/Notification/NotificationInterface.php

11 lines
162 B
PHP
Raw Normal View History

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