forked from fa/breadcrumb-the-shire
In-app notification system with topbar bell icon, dropdown panel, mark-as-read/dismiss actions, and scheduled cleanup of old read notifications. Includes event listeners for user.created and user.deleted events, authorization policy, and full test coverage. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
21 lines
536 B
PHP
21 lines
536 B
PHP
<?php
|
|
|
|
namespace MintyPHP\Module\Notifications\Service;
|
|
|
|
class NotificationServicesFactory
|
|
{
|
|
private ?NotificationService $notificationService = null;
|
|
|
|
public function __construct(
|
|
private readonly NotificationRepositoryFactory $notificationRepositoryFactory
|
|
) {
|
|
}
|
|
|
|
public function createNotificationService(): NotificationService
|
|
{
|
|
return $this->notificationService ??= new NotificationService(
|
|
$this->notificationRepositoryFactory->createNotificationRepository()
|
|
);
|
|
}
|
|
}
|