BuilderInterface.php 385 B

12345678910111213
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Service\Mailer\Builder;
  4. use App\Service\Mailer\Model\MailerModelInterface;
  5. use Doctrine\Common\Collections\ArrayCollection;
  6. interface BuilderInterface extends AbstractBuilderInterface {
  7. public function support(MailerModelInterface $mailerModel): bool;
  8. public function build(MailerModelInterface $mailerModel): ArrayCollection;
  9. }