backupscript/src/Notification/NotificationInterface.php
Jens True 0f3bbf1f47
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
More codestandards.
2023-06-12 09:30:10 +00:00

9 lines
136 B
PHP

<?php
namespace App\Notification;
interface NotificationInterface
{
public function send(string $title, string $message): void;
}