9 lines
136 B
PHP
9 lines
136 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Notification;
|
||
|
|
||
|
interface NotificationInterface
|
||
|
{
|
||
|
public function send(string $title, string $message): void;
|
||
|
}
|