2023-06-12 09:30:10 +00:00
|
|
|
<?php
|
|
|
|
|
2023-07-13 11:34:56 +00:00
|
|
|
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;
|
|
|
|
}
|