Files
backupscript/src/Notification/NotificationInterface.php

19 lines
331 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
{
2023-08-15 11:43:12 +00:00
/**
* @param string[] $config Configuration
*/
public static function factory(array $config): self;
2023-09-19 06:34:20 +00:00
/**
* @throw Exception on error.
*/
2023-06-12 09:30:10 +00:00
public function send(string $title, string $message): void;
}