You've already forked php-flasher
mirror of
https://github.com/php-flasher/php-flasher.git
synced 2026-04-06 13:02:55 +01:00
20 lines
384 B
PHP
20 lines
384 B
PHP
<?php
|
|
|
|
namespace Flasher\SweetAlert\Prime;
|
|
|
|
use Flasher\Prime\Factory\NotificationFactory;
|
|
|
|
/**
|
|
* @mixin SweetAlertBuilder
|
|
*/
|
|
final class SweetAlertFactory extends NotificationFactory
|
|
{
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function createNotificationBuilder()
|
|
{
|
|
return new SweetAlertBuilder($this->getStorageManager(), new SweetAlert(), 'sweet_alert');
|
|
}
|
|
}
|