Files
svo/kernel/modules/notification/contracts/NotificationChannelInterface.php
2025-07-14 12:15:41 +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;
}