Select Git revision
HasMailsInterface.php

Jean-Philippe Metivier authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
HasMailsInterface.php 405 B
<?php
namespace UnicaenMail\Entity;
use UnicaenMail\Entity\Db\Mail;
use UnicaenRenderer\Entity\Db\Template;
interface HasMailsInterface
{
public function getMails(): array;
public function hasMail(Mail $mail): bool;
public function addMail(Mail $mail): void;
public function removeMail(Mail $mail): void;
public function hasMailWithTemplateCode(string|Template $template): bool;
}