Files
igmf/kernel/modules/notification/contracts/NotificationChannelInterface.php
2025-08-01 14:29:50 +03:00

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;
}