coolify/app/Notifications/Channels/SendsEmail.php

8 lines
120 B
PHP
Raw Normal View History

2023-06-01 10:15:33 +00:00
<?php
namespace App\Notifications\Channels;
interface SendsEmail
{
2023-07-28 08:55:26 +00:00
public function getRecepients($notification);
}