11 lines
225 B
PHP
11 lines
225 B
PHP
<?php
|
|
|
|
namespace kernel\modules\notification\contracts;
|
|
|
|
|
|
use kernel\modules\notification\models\User;
|
|
|
|
interface NotificationChannelInterface
|
|
{
|
|
public function send(NotificationMessage $notification, User $user): bool;
|
|
} |