27 lines
427 B
PHP
27 lines
427 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
class EventType
|
|
{
|
|
/**
|
|
* When user logs in application
|
|
*/
|
|
public const REGISTER = 'REGISTER';
|
|
|
|
/**
|
|
* When user logs in application
|
|
*/
|
|
public const LOGIN = 'LOGIN';
|
|
|
|
/**
|
|
* When user logs in application
|
|
*/
|
|
public const LOGOUT = 'LOGOUT';
|
|
|
|
/**
|
|
* When user logs in application
|
|
*/
|
|
public const PASSWORD_RESET = 'PASSWORD_RESET';
|
|
}
|