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-14 14:24:19 +00:00
|
|
|
static function factory(array $config): self;
|
2023-06-12 09:30:10 +00:00
|
|
|
public function send(string $title, string $message): void;
|
|
|
|
}
|