-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNotyf.php
36 lines (32 loc) · 1.05 KB
/
Notyf.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
declare(strict_types=1);
namespace Flasher\Notyf\Prime;
use Flasher\Prime\Factory\NotificationFactory;
/**
* Notyf - Factory implementation for Notyf.js notifications.
*
* This class implements the notification factory for Notyf.js, creating
* specialized notification builders configured for Notyf's specific features.
* It serves as the primary entry point for creating Notyf notifications.
*
* Design patterns:
* - Factory: Creates specialized notification builders
* - Bridge: Connects PHPFlasher's notification system to Notyf.js
* - Composition: Delegates to NotyfBuilder for construction details
*
* @mixin \Flasher\Notyf\Prime\NotyfBuilder
*/
final class Notyf extends NotificationFactory implements NotyfInterface
{
/**
* {@inheritdoc}
*
* Creates a new Notyf-specific notification builder.
*
* @return NotyfBuilder A builder configured for Notyf.js notifications
*/
public function createNotificationBuilder(): NotyfBuilder
{
return new NotyfBuilder('notyf', $this->storageManager);
}
}