Jens True
0f3bbf1f47
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
9 lines
136 B
PHP
9 lines
136 B
PHP
<?php
|
|
|
|
namespace App\Notification;
|
|
|
|
interface NotificationInterface
|
|
{
|
|
public function send(string $title, string $message): void;
|
|
}
|