17 lines
489 B
PHP
17 lines
489 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace MintyPHP\Module\Notifications\Service;
|
||
|
|
|
||
|
|
use MintyPHP\Module\Notifications\Repository\NotificationRepository;
|
||
|
|
use MintyPHP\Module\Notifications\Repository\NotificationRepositoryInterface;
|
||
|
|
|
||
|
|
class NotificationRepositoryFactory
|
||
|
|
{
|
||
|
|
private ?NotificationRepository $notificationRepository = null;
|
||
|
|
|
||
|
|
public function createNotificationRepository(): NotificationRepositoryInterface
|
||
|
|
{
|
||
|
|
return $this->notificationRepository ??= new NotificationRepository();
|
||
|
|
}
|
||
|
|
}
|