Files
breadcrumb-the-shire/lib/Service/Mail/MailRepositoryFactory.php
2026-03-05 08:26:51 +01:00

17 lines
393 B
PHP

<?php
namespace MintyPHP\Service\Mail;
use MintyPHP\Repository\Mail\MailLogRepository;
use MintyPHP\Repository\Mail\MailLogRepositoryInterface;
class MailRepositoryFactory
{
private ?MailLogRepository $mailLogRepository = null;
public function createMailLogRepository(): MailLogRepositoryInterface
{
return $this->mailLogRepository ??= new MailLogRepository();
}
}