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