* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Notifier; use Symfony\Component\Notifier\Notification\Notification; use Symfony\Component\Notifier\Recipient\RecipientInterface; /** * Interface for the Notifier system. * * @author Fabien Potencier * * @experimental in 5.1 */ interface NotifierInterface { public function send(Notification $notification, RecipientInterface ...$recipients): void; }