You've already forked php-flasher
mirror of
https://github.com/php-flasher/php-flasher.git
synced 2026-04-06 04:52:56 +01:00
20 lines
339 B
PHP
20 lines
339 B
PHP
<?php
|
|
|
|
namespace Flasher\Noty\Prime;
|
|
|
|
use Flasher\Prime\Factory\AbstractFactory;
|
|
|
|
/**
|
|
* @mixin NotyBuilder
|
|
*/
|
|
final class NotyFactory extends AbstractFactory
|
|
{
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function createNotificationBuilder()
|
|
{
|
|
return new NotyBuilder($this->getStorageManager(), new Noty(), 'noty');
|
|
}
|
|
}
|