1
0
Files
services_core/app/Services/Notification/Contracts/NotificationChannelAdapter.php
T
2026-07-31 13:57:11 +07:00

11 lines
199 B
PHP

<?php
namespace App\Services\Notification\Contracts;
use App\Models\NotificationDelivery;
interface NotificationChannelAdapter
{
public function send(NotificationDelivery $delivery): array;
}