forked from admin/services_core
11 lines
199 B
PHP
11 lines
199 B
PHP
<?php
|
|
|
|
namespace App\Services\Notification\Contracts;
|
|
|
|
use App\Models\NotificationDelivery;
|
|
|
|
interface NotificationChannelAdapter
|
|
{
|
|
public function send(NotificationDelivery $delivery): array;
|
|
}
|