1
0
Files
breadcrumb-the-shire/lib/Service/Mail/MailRepositoryFactory.php
2026-03-04 15:56:58 +01:00

16 lines
327 B
PHP

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