Files
backupscript/src/Notification/NotificationInterface.php

12 lines
212 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-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;
}