Files
2024-12-09 12:36:33 +01:00

9 lines
121 B
PHP

<?php
namespace App\Notifications\Channels;
interface SendsEmail
{
public function getRecipients($notification);
}