-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNoty.php
36 lines (32 loc) · 1.03 KB
/
Noty.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\Noty\Prime;
use Flasher\Prime\Factory\NotificationFactory;
/**
* Noty - Factory implementation for Noty.js notifications.
*
* This class implements the notification factory for Noty.js, creating
* specialized notification builders configured for Noty's specific features.
* It serves as the primary entry point for creating Noty notifications.
*
* Design patterns:
* - Factory: Creates specialized notification builders
* - Bridge: Connects PHPFlasher's notification system to Noty.js
* - Composition: Delegates to NotyBuilder for construction details
*
* @mixin \Flasher\Noty\Prime\NotyBuilder
*/
final class Noty extends NotificationFactory implements NotyInterface
{
/**
* {@inheritdoc}
*
* Creates a new Noty-specific notification builder.
*
* @return NotyBuilder A builder configured for Noty.js notifications
*/
public function createNotificationBuilder(): NotyBuilder
{
return new NotyBuilder('noty', $this->storageManager);
}
}