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