Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • release/8.0-perimetres
  • php84
  • detached3
  • 6.x
  • 7.x
  • detached2
  • detached
  • php82
  • 5.x
  • cherry-pick-bf3b5271
  • v5.x-test
  • laminas_migration
  • 7.2.9
  • 7.2.8
  • 7.2.7
  • 7.2.6
  • 7.2.5
  • 7.2.4
  • 7.2.3
  • 7.2.2
  • 7.2.1
  • 7.2.0
  • 7.1.3
  • 7.1.2
  • 7.1.1
  • 7.1.0
  • 7.0.1
  • 7.0.0
  • 6.1.11
  • 6.1.10
  • 6.1.9
  • 6.1.8
33 results

HasMailsInterface.php

Blame
  • 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;
    
    }