mirror of
https://github.com/php-flasher/php-flasher.git
synced 2026-03-31 15:07:47 +01:00
13 lines
273 B
PHP
13 lines
273 B
PHP
<?php
|
|
|
|
namespace Flasher\Prime\Dispatcher;
|
|
|
|
final class FlusherEvents
|
|
{
|
|
const NOTIFICATION_CREATED = 'flusher.notification.created';
|
|
|
|
const NOTIFICATION_RENDERED = 'flusher.notification.rendered';
|
|
|
|
const NOTIFICATION_CLEARED = 'flusher.notification.cleared';
|
|
}
|