Files
breadcrumb-the-shire/lib/Service/Mail/MailRepositoryFactory.php

16 lines
327 B
PHP
Raw Normal View History

2026-03-04 15:56:58 +01:00
<?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();
}
}