Files
php-flasher/SweetAlertFactory.php
T
2020-12-15 15:00:08 +01:00

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');
}
}