mirror of
https://github.com/php-flasher/php-flasher.git
synced 2026-03-31 15:07:47 +01:00
15 lines
225 B
PHP
15 lines
225 B
PHP
<?php
|
|
|
|
namespace Flasher\Toastr\Prime\Producer;
|
|
|
|
final class ToastrProducer extends \Flasher\Prime\AbstractFlasher
|
|
{
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function getRenderer()
|
|
{
|
|
return 'toastr';
|
|
}
|
|
}
|