You've already forked php-flasher
mirror of
https://github.com/php-flasher/php-flasher.git
synced 2026-04-05 12:32:55 +01:00
20 lines
345 B
PHP
20 lines
345 B
PHP
<?php
|
|
|
|
namespace Flasher\Notyf\Prime;
|
|
|
|
use Flasher\Prime\Factory\AbstractFactory;
|
|
|
|
/**
|
|
* @mixin NotyfBuilder
|
|
*/
|
|
final class NotyfFactory extends AbstractFactory
|
|
{
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function createNotificationBuilder()
|
|
{
|
|
return new NotyfBuilder($this->getStorageManager(), new Notyf(), 'notyf');
|
|
}
|
|
}
|