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